← 返回
未分类 Key

汽车配件 - 4S 指导价查询

使用积智数据 4S价 API,通过 配件编码 列表 查询 配件的 4S价 信息。
使用积智数据 4S价 API,通过 配件编码 列表 查询 配件的 4S价 信息。
polaris2013
未分类 clawhub v1.0.1 1 版本 100000 Key: 需要
★ 0
Stars
📥 368
下载
💾 13
安装
1
版本
#latest

概述

积智数据 4S价查询( parts)

基于 [配件4S价查询 API] 的 OpenClaw 技能,支持:

  • 配件 4S价 查询:通过 配件编码 列表 查询 配件的 4S价 信息;

使用技能前需要申请数据,请联系【积智数据】 MOBILE (+86 13916450206/15821282326) ; EMAIL( juyuan@jikugroup.com/jiangzhihui@jikugroup.com) 获取。

后端服务

本技能依赖积智数据 4S价查询服务,接口地址:https://erp.qipeidao.com/jzOpenClaw/getPrice4s

环境变量配置

# Linux / macOS
export JZ_API_KEY="your_appkey_here"

# Windows PowerShell
$env:JZ_API_KEY="your_appkey_here"

脚本路径

脚本文件:skills/prices/get_parts_price4s.py

使用方式

1. 按 配件编码 列表 查询 4S价 信息

python3 skills/prices/get_parts_price4r.py LSVAL41Z882104202 '["1ZD807221GRU", "5LD807835BU34"]'
## 查询 4S价 信息请求参数

| 字段名  | 类型   | 必填 | 说明                                           |
|--------|--------|------|------------------------------------------------|
| vin    | string | 是   | 17 位 VIN 车架号                               |
| partsCodes | list | 是   | 配件编码 列表,每个编码为 字母数字组合 |

示例:
 LSVAL41Z882104202 ["1ZD807221GRU", "5LD807835BU34"]

查询 4S价 信息返回结果示例

脚本直接输出接口 model 字段,结构与示例一致(示例简化):

 [
    {
      "partsCode": "1ZD807221GRU",
      "brandName": null,
      "subBrandName": null,
      "price": null,
      "salePriceNoTax": 1248.67,
      "salePriceWithTax": 1411.0,
      "netPriceNoTax": 891.55,
      "netPriceWithTax": 1007.45,
      "publishTime": null
    },
    {
      "partsCode": "5LD807835BU34",
      "brandName": null,
      "subBrandName": null,
      "price": null,
      "salePriceNoTax": 253.1,
      "salePriceWithTax": 286.0,
      "netPriceNoTax": 186.94,
      "netPriceWithTax": 211.24,
      "publishTime": null
    }
  ]

当出现错误(如 VIN 不正确或无数据),脚本会输出:

{
  "error": "api_error",
  "state": 202,
  "msg": "VIN不正确"
}

常见错误码

| 代号 | 说明 |

|------|---------|

| 10001 | 参数错误 |

| 10004 | VIN 不正确或无数据 |

在 OpenClaw 中的推荐用法

  1. 用户给出车架号:「帮我查一下 VIN LSVAL41Z882104202 询价配件编码: 1ZD807221GRU,5LD807835BU34 的4S价 」。
  2. 调用1-有车架号+配件编码列表查询:

python3 skills/price4s/get_parts_price4s.py LSVAL41Z882104202 '["1ZD807221GRU", "5LD807835BU34"]

  1. 调用2-无车架号,纯配件编码列表查询:

python3 skills/price4s/get_parts_price4s.py '' '["1ZD807221GRU", "5LD807835BU34"]'

  1. 从返回中选取 partsCode/brandName/subBrandName/salePriceNoTax/salePriceWithTax/netPriceNoTax/netPriceWithTax 等字段,给出自然语言总结;

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-03-31 08:07 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

VIN配件 模糊译码(车型)

polaris2013
使用积智数据模糊译码 API,通过 17 位 VIN 车架号的车型 与 待译码的配件别名列表, 模糊解出这些配件的 标准配件编码OE 与 标准配件名称等信息,用于当精准译码无法解析出配件编码OE 与 标准配件名称时。
★ 0 📥 395

汽车配件 - 多维 参考价查询

polaris2013
使用积智数据 参考价格查询 API,通过 配件编码 列表 查询 配件的 参考价格信息。
★ 0 📥 404

VIN车辆 车型解析 API

polaris2013
使用积智数据 VIN 车型解析 API,通过 17 位 VIN 车架号查询车辆的车型信息:如品牌、车型、车系、年款、销售类型、发动机、变速箱等信息。
★ 0 📥 427