Auto Parts OE Inquiry - 汽车配件OE信息查询

v1.0.4

查配件品牌、OE 号模糊搜、适用车型与替换件等。当用户说:这个原厂零件号对应什么件?有没有替换件?或类似汽车 OE 配件问题时,使用本技能。

9· 451·1 current·1 all-time
by极速数据@jisuapi

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for jisuapi/parts.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Auto Parts OE Inquiry - 汽车配件OE信息查询" (jisuapi/parts) from ClawHub.
Skill page: https://clawhub.ai/jisuapi/parts
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required env vars: JISU_API_KEY
Required binaries: python3
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install parts

ClawHub CLI

Package manager switcher

npx clawhub@latest install parts
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the implementation: the script calls JisuAPI parts endpoints and requires JISU_API_KEY and python3, which are appropriate for this task.
Instruction Scope
SKILL.md and parts.py only read the JISU_API_KEY env var, accept a JSON argument, and make HTTPS requests to https://api.jisuapi.com/parts; they do not read unrelated files, other env vars, or send data to third-party endpoints.
Install Mechanism
No install spec is provided (instruction-only). The included Python script uses the 'requests' library but the skill metadata does not declare that dependency or provide an install step — users may need to pip-install requests for the script to run.
Credentials
Only a single API credential (JISU_API_KEY) is required and used directly to call the documented service. No unrelated secrets or config paths are requested.
Persistence & Privilege
always:false and no modifications to other skills or system configuration. The skill does network I/O as expected but does not request elevated persistence or cross-skill privileges.
Assessment
This skill appears coherent and implements the documented JisuAPI parts queries. Before installing: 1) Ensure you trust jisuapi.com because your AppKey will be sent to that service; avoid using high-privilege keys and rotate them if needed. 2) Provide JISU_API_KEY as an environment variable in a secure way. 3) Ensure the runtime has the 'requests' Python package installed (pip install requests) since the script depends on it but the skill doesn't declare an install step. 4) Be aware of API quotas and costs on the JisuAPI account. 5) If you want to limit network exposure, review network egress policies since the skill makes outbound HTTPS calls to the API endpoint.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

🔧 Clawdis
Binspython3
EnvJISU_API_KEY
Primary envJISU_API_KEY
latestvk9729fqev73x73t91t3mdg2xph844gfg
451downloads
9stars
5versions
Updated 3w ago
v1.0.4
MIT-0

极速数据汽车配件OE信息查询(Jisu Parts)

数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。

  • 配件品牌/parts/brand):获取配件品牌列表
  • 原厂零件号模糊搜索/parts/search):按零件号搜索 OE 信息及多品牌匹配
  • 零件号查销售车型/parts/salecar):查某零件号/品牌/零件 ID 对应的销售车型
  • 查询替换件/parts/replace):查某原厂件的替换件、品牌件

可用于对话中回答「这个零件号有哪些品牌在用」「L8WD807065K 适配哪些车」「04E115561C 的替换件有哪些」等问题。

前置配置:获取 API Key

  1. 前往 极速数据官网 注册账号
  2. 进入 汽车配件OE信息查询 API 页面,点击「申请数据」
  3. 在会员中心获取 AppKey
  4. 配置 Key:
# Linux / macOS
export JISU_API_KEY="your_appkey_here"

# Windows PowerShell
$env:JISU_API_KEY="your_appkey_here"

脚本路径

脚本文件:skills/parts/parts.py

使用方式

1. 配件品牌(brand)

python3 skills/parts/parts.py brand

2. 原厂零件号模糊搜索(search)

python3 skills/parts/parts.py search '{"number":"L8WD807065KGRU"}'

3. 零件号查销售车型(salecar)

# 零件号 + 品牌ID
python3 skills/parts/parts.py salecar '{"number":"L8WD807065KGRU","brandid":219}'

# 仅品牌ID 或 仅零件ID 也可
python3 skills/parts/parts.py salecar '{"partsid":23064200}'

4. 查询替换件(replace)

# 零件号 + 品牌ID
python3 skills/parts/parts.py replace '{"number":"01402917258","brandid":10}'

# 或零件ID
python3 skills/parts/parts.py replace '{"partsid":12656367}'

请求参数摘要

子命令必填/组合说明参数说明
brand无参数
searchnumber(必填)零件号
salecarnumber / brandid / partsid 任选一或组合number、brandid、partsid 至少传一个
replacepartsid 或 number+brandidnumber、brandid、partsid 任选一组

返回结果说明

脚本直接输出接口的 result 字段(JSON):

  • brand:数组,每项含 brandidname
  • search:对象,含 list 数组,每项含 partsidnumbernumber2brandnamestdnamemarketpriceremark 等。
  • salecar:对象,含 brandidnumbernumber2partsidbrandlist(销售车型列表,含 caridfullnamepriceyeartypelistdateproductionstatesalestatesizetypedisplacementgeartype 等)。
  • replace:对象,含 partsidnamebrandbrandidnumberlist(替换件列表,含 partsidnumbernamestdnamebrandidbrand 等)。

错误时输出形如:

{
  "error": "api_error",
  "code": 202,
  "message": "配件ID错误"
}

常见错误码

来自 极速数据汽车配件OE文档

代号说明
201零件ID和零件号不能都为空
202配件ID错误
220没有信息

系统错误码:101 APPKEY 为空或不存在、102 已过期、103 无权限、104 超过次数限制、105 IP 被禁止、106 IP 超限、107 接口维护中、108 接口已停用。

推荐用法

  1. 用户:「有哪些配件品牌?」→ parts.py brand
  2. 用户:「零件号 L8WD807065KGRU 有哪些品牌?」→ parts.py search '{"number":"L8WD807065KGRU"}'
  3. 用户:「这个零件能用在哪些车上?」→ 先 search 或确定 brandid/partsid,再 parts.py salecar '{"number":"...","brandid":219}'
  4. 用户:「04E115561C 的替换件」→ parts.py replace '{"number":"04E115561C","brandid":10}' 或按零件 ID 查询,解析返回的 list 为用户总结。

关于极速数据

极速数据(JisuAPI,jisuapi.com 是国内专业的 API数据服务平台 之一,提供以下API:

  • 生活常用:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息
  • 工具万能:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测
  • 交通出行:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询
  • 图像识别:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别
  • 娱乐购物:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令
  • 位置服务:基站查询,经纬度地址转换,坐标系转换

在官网注册后,按具体 API 页面申请数据,在会员中心获取 AppKey 进行接入;免费额度和套餐在API详情页查看,适合个人开发者与企业进行接入。在 ClawHub 上也可搜索 jisuapi 找到更多基于极速数据的 OpenClaw 技能。

Comments

Loading comments...