← Back to Skills Marketplace
anyunzhong

clawec-amazon-product-search

by ClawEC · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
50
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install clawec-amazon-product-search
Description
通过 Clawec API 搜索亚马逊商品,支持多站点区域,返回价格、销量、评分、链接等。在用户需要亚马逊搜品、跨境选品、竞品调研、关键词找货、Amazon 产品搜索时使用。
README (SKILL.md)

亚马逊产品搜索

关于 ClawEC

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

本技能调用 ClawEC 开放 API,用于亚马逊多站点商品搜索与竞品调研。

认证与基址

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

接口

POST /aigc/tool/amazon_product_search

参数 位置 必填 说明
keyword body 搜索关键词
region body 站点区域代码(2 位大写字母)

region 取值

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

未指定 region 时默认 NA

调用

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

或使用脚本:

bash scripts/search.sh "bluetooth headphones" NA

响应结构

{
  "status": 1,
  "code": 200,
  "msg": "success",
  "data": [ ... ],
  "extra": "{ ... }"
}
  • status: 1 = 成功,0 = 失败
  • data: 商品数组,失败或空结果时按实际返回处理
  • extra: JSON 字符串,内含表格元数据(列定义、table.data 等),需 JSON.parse 后使用

商品字段

字段 说明
name 名称
cover 封面图 URL
price 价格
sales 销量
rating 评论数
star 评分
url 商品详情链接

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

工作流程

  1. 确认搜索关键词与目标 region(站点)
  2. 检查 CLAWEC_API_KEY 是否可用
  3. 执行 API 请求
  4. status !== 1 或请求失败时,说明错误并提示检查密钥与参数
  5. 解析 data;若 data 为空,尝试解析 extra 中的 table.data
  6. 按用户需求整理输出

输出建议

默认中文摘要,包含:

  • 命中数量与目标站点
  • 商品对比表:名称、价格、销量、评分、评论数、链接
  • 选品调研场景:可按价格/销量/评分排序,并给出 2–3 条观察

示例

输入:在北美站搜索「phone case」

输出摘要

名称 价格 销量 评分 评论数 链接
... ... ... ... ... ...
Usage Guidance
Before using, make sure you trust ClawEC with your Amazon search queries and API access. Prefer setting CLAWEC_API_KEY in your environment, do not hardcode or share it, and confirm the keyword and region before running searches.
Capability Analysis
Type: OpenClaw Skill Name: clawec-amazon-product-search Version: 1.0.0 The skill bundle is a standard API wrapper for searching Amazon products via the ClawEC platform. The shell script (scripts/search.sh) safely constructs JSON payloads using Python to prevent injection and communicates only with the documented endpoint (clawec.com). The instructions in SKILL.md are well-defined, focusing on legitimate search tasks and proper handling of API keys via environment variables without any signs of malicious intent or data exfiltration.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The advertised purpose matches the fixed ClawEC Amazon product-search endpoint and response schema. Users should notice that their product-research keyword and region are sent to ClawEC.
Instruction Scope
Instructions are scoped to confirming a keyword and region, calling the API, parsing the response, and summarizing results. No prompt overrides, hidden goals, or autonomous background behavior are shown.
Install Mechanism
There is no install spec or package installation. The included helper script is a simple bash/curl wrapper and is not shown as auto-executed.
Credentials
The skill needs a ClawEC API key via CLAWEC_API_KEY or user input, while registry requirements list no primary credential or env var. This is purpose-aligned and disclosed in SKILL.md, but users should treat the key as sensitive.
Persistence & Privilege
The artifacts do not show persistence, file indexing, credential storage, background tasks, broad local access, or privilege escalation.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawec-amazon-product-search
  3. After installation, invoke the skill by name or use /clawec-amazon-product-search
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of amazon-product-search skill. - Enables Amazon product search across multiple regions via the Clawec API. - Returns product details such as price, sales, rating, review count, and direct links. - Supports use cases like product sourcing, competitor research, and keyword-based product finding. - Environment variable support for API key (CLAWEC_API_KEY); prompts user if not set. - Output includes a comparison table and research insights in Chinese by default.
Metadata
Slug clawec-amazon-product-search
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is clawec-amazon-product-search?

通过 Clawec API 搜索亚马逊商品,支持多站点区域,返回价格、销量、评分、链接等。在用户需要亚马逊搜品、跨境选品、竞品调研、关键词找货、Amazon 产品搜索时使用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 50 downloads so far.

How do I install clawec-amazon-product-search?

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

Is clawec-amazon-product-search free?

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

Which platforms does clawec-amazon-product-search support?

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

Who created clawec-amazon-product-search?

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

💬 Comments