← Back to Skills Marketplace
anyunzhong

clawec-amazon-asin-query

by clawEC · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
94
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install clawec-amazon-asin-query
Description
通过 Clawec API 按 ASIN 或商品链接查询亚马逊商品详情。在用户需要亚马逊 ASIN 详情、单品调研、竞品分析、解析商品链接、Amazon product detail 时使用。
README (SKILL.md)

亚马逊 ASIN 详情查询

关于 ClawEC

ClawEC 是一款面向跨境电商场景的 AI 智能体协同平台,以「你的跨境电商 AI 团队」为品牌主张,将选品、调研、运营、上架、营销、客服、采购、合规等环节沉淀为可执行的 SOP(标准作业程序),通过多智能体(「虾员工」)分工协作与 7×24 小时自动化任务,帮助卖家在单人或少人条件下完成跨境业务闭环,降低对专业运营团队与复杂本地部署的依赖。

本技能调用 ClawEC 开放 API,用于按 ASIN 或商品 URL 获取亚马逊单品详情。

认证与基址

  • Base URL: https://www.clawec.com/api
  • API Key: 在 https://www.clawec.com/?source=q20005656 注册帐号 然后去https://www.clawec.com/api-key?source=q20005656 获取key
  • 请求头:
    • Content-Type: application/json
    • Authorization: Bearer \x3CAPI_KEY>

优先从环境变量 CLAWEC_API_KEY 读取密钥;未设置时向用户索取,勿硬编码。

接口

POST /aigc/tool/amazon_asin_query

参数 位置 必填 说明
url body 否* 商品链接;有 url 时可不传 asinregion
asin body 否* 商品 ASIN;无 url 时与 region 一起使用(由 API 拼接链接)
region body 否* 站点区域代码(2 位大写字母);有 url 时可不传

* 必须提供 url,或同时提供 asin + region

region 取值

代码 站点
NA 北美(美国)
CA 加拿大
BR 巴西
UK 英国
DE 德国
FR 法国
JP 日本
SG 新加坡
AU 澳大利亚

未指定 region 且使用 ASIN 查询时默认 NA

调用

按商品链接:

curl -s -X POST "https://www.clawec.com/api/aigc/tool/amazon_asin_query" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $CLAWEC_API_KEY" \
  -d '{"url":"https://www.amazon.com/dp/B0XXXXXXXX"}'

按 ASIN + 站点:

curl -s -X POST "https://www.clawec.com/api/aigc/tool/amazon_asin_query" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $CLAWEC_API_KEY" \
  -d '{"asin":"B0XXXXXXXX","region":"NA"}'

或使用脚本:

# 商品链接
bash scripts/query.sh "https://www.amazon.com/dp/B0XXXXXXXX"

# ASIN + 区域(默认 NA)
bash scripts/query.sh B0XXXXXXXX NA

响应结构

{
  "status": 1,
  "data": { ... }
}
  • status: 1 = 成功,0 = 失败
  • data: 商品详情对象,字段以实际返回为准

完整说明见 references/response-schema.md

工作流程

  1. 确认查询方式:商品 url,或 asin + region
  2. 检查 CLAWEC_API_KEY 是否可用
  3. 执行 API 请求
  4. status !== 1 或请求失败时,说明错误并提示检查密钥、ASIN/链接与站点
  5. 解析 data,按用户需求整理输出

输出建议

默认中文摘要,包含:

  • 查询目标(ASIN / 链接)与站点
  • 核心字段表:标题、价格、评分、评论数、销量、类目、品牌、主图、链接等(以 data 实际字段为准)
  • 竞品/选品场景:突出与搜索类技能不同的「单品深度」信息,并给出 2–3 条观察

示例

输入:北美站 ASIN B0D1XD1ZV3

输出摘要

字段
标题 ...
价格 ...
评分 ...
链接 ...

(其余字段按 API 返回的 data 动态展示。)

Usage Guidance
This is not a substantive clearance of the skill. Re-run the review with readable metadata.json and artifact files before installing or approving it.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
Not assessed from artifact content: filesystem inspection commands failed before metadata.json or artifact files could be read.
Instruction Scope
Not assessed from artifact content because SKILL.md and related artifact files were unavailable to the reviewer.
Install Mechanism
Not assessed from artifact content because install specifications and manifest files could not be inspected.
Credentials
Not assessed from artifact content because the supplied workspace could not be read.
Persistence & Privilege
Not assessed from artifact content because no artifact evidence was accessible.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawec-amazon-asin-query
  3. After installation, invoke the skill by name or use /clawec-amazon-asin-query
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of amazon-asin-query skill. - Enables querying Amazon product details via Clawec API using ASIN or product URL. - Supports multiple Amazon regions (e.g., US, UK, DE, JP, etc.). - Provides structured product details for research, competitive analysis, and link parsing. - Requires user-provided Clawec API key (environment variable or prompt). - Outputs a concise summary with core product fields and key insights for single product analysis.
Metadata
Slug clawec-amazon-asin-query
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is clawec-amazon-asin-query?

通过 Clawec API 按 ASIN 或商品链接查询亚马逊商品详情。在用户需要亚马逊 ASIN 详情、单品调研、竞品分析、解析商品链接、Amazon product detail 时使用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 94 downloads so far.

How do I install clawec-amazon-asin-query?

Run "/install clawec-amazon-asin-query" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is clawec-amazon-asin-query free?

Yes, clawec-amazon-asin-query is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does clawec-amazon-asin-query support?

clawec-amazon-asin-query is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created clawec-amazon-asin-query?

It is built and maintained by clawEC (@anyunzhong); the current version is v1.0.0.

💬 Comments