← Back to Skills Marketplace
anyunzhong

clawec-amazon-best-seller

by clawEC · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
91
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install clawec-amazon-best-seller
Description
通过 Clawec API 查询亚马逊 Best Sellers 销售排行榜,可按类目筛选。在用户需要亚马逊畅销榜、销售排行、Best Seller 榜单、类目热销、竞品榜调研时使用。
README (SKILL.md)

亚马逊销售排行

关于 ClawEC

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

本技能调用 ClawEC 开放 API,用于获取亚马逊 Best Sellers 畅销榜数据。

认证与基址

  • 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_best_seller

参数 位置 必填 说明
cat body 类目代码;用户未指定类目时传空字符串 ""

cat 可选值

只能传空或下表中的代码之一:

代码 类目
"" 不限类目(全站/默认畅销榜)
lawn-garden 庭院与园艺
fashion 时尚
amazon-devices Amazon 设备
music 音乐
musical-instruments 乐器
sports-collectibles 运动与收藏品
office-products 办公用品
books 图书
appliances 家电
baby-products 母婴
pet-supplies 宠物用品
home-garden 家居与园艺

用户用中文描述类目时,映射到上表代码后再请求;无法映射时传 "" 并说明已按全类目查询。

调用

不限类目(默认):

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

指定类目:

curl -s -X POST "https://www.clawec.com/api/aigc/tool/amazon_best_seller" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $CLAWEC_API_KEY" \
  -d '{"cat":"books"}'

或使用脚本:

# 不限类目
bash scripts/rank.sh

# 指定类目
bash scripts/rank.sh books

响应结构

{
  "status": 1,
  "data": { ... }
}
  • status: 1 = 成功,0 = 失败
  • data: 畅销榜数据对象或列表,字段以实际返回为准

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

工作流程

  1. 确认用户是否指定类目;未指定则 cat""
  2. 检查 CLAWEC_API_KEY 是否可用
  3. 执行 API 请求
  4. status !== 1 或请求失败时,说明错误并提示检查密钥与 cat 是否在可选范围内
  5. 解析 data(若为嵌套结构,展开商品列表),按用户需求整理输出

输出建议

默认中文摘要,包含:

  • 查询类目(或「全类目」)
  • 榜单 Top N:排名、名称、价格、销量、评分、链接等(以 data 实际字段为准)
  • 选品/竞品场景:归纳头部价格带、品牌集中度或差异化机会 2–3 条

示例

输入:查询「图书」类目畅销榜

输出摘要

排名 名称 价格 销量 评分 链接
1 ... ... ... ... ...
2 ... ... ... ... ...

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

Usage Guidance
This result is low confidence because the local workspace inspection failed; review the actual SKILL.md, metadata, install specs, and artifact files before installing.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
No artifact evidence was available to show a purpose mismatch or unsafe capability.
Instruction Scope
No artifact evidence was available to show unsafe or overbroad instructions.
Install Mechanism
No artifact evidence was available to show risky install behavior.
Credentials
No artifact evidence was available to show disproportionate environment access.
Persistence & Privilege
No artifact evidence was available to show persistence or privilege concerns.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawec-amazon-best-seller
  3. After installation, invoke the skill by name or use /clawec-amazon-best-seller
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
amazon-best-seller v1.0.0 - 首次发布,集成 ClawEC API 查询亚马逊 Best Sellers 畅销榜。 - 支持按类目(共12种及全站畅销榜)筛选商品排行。 - 响应结构化展示商品排名、价格、销量、评分等关键信息。 - 按用户需求输出中文选品摘要及竞品机会分析。 - 安全设计:API Key 优先从环境变量读取,用户输入中文类目智能映射。
Metadata
Slug clawec-amazon-best-seller
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is clawec-amazon-best-seller?

通过 Clawec API 查询亚马逊 Best Sellers 销售排行榜,可按类目筛选。在用户需要亚马逊畅销榜、销售排行、Best Seller 榜单、类目热销、竞品榜调研时使用。 It is an AI Agent Skill for Claude Code / OpenClaw, with 91 downloads so far.

How do I install clawec-amazon-best-seller?

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

Is clawec-amazon-best-seller free?

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

Which platforms does clawec-amazon-best-seller support?

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

Who created clawec-amazon-best-seller?

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

💬 Comments