返回顶部
a

apiclawAPIClaw API平台

APIClaw API platform overview — AI-powered commerce data infrastructure. Provides programmatic access to 200M+ Amazon products with real-time data across 6 endpoints: category browsing, market metrics, product search, competitor lookup, realtime ASIN detail, and AI review analysis. Use when user asks: what APIClaw can do, available API endpoints, how to get started, API capabilities overview, credit usage, or general commerce data questions. For deep Amazon product selection strategies and analy

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
144
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

apiclaw

APIClaw — AI代理的电商数据基础设施

实时访问2亿+亚马逊产品。6个端点,一个API密钥。
语言规则:使用用户语言回复。

快速开始

  1. 1. 获取API密钥:apiclaw.io/api-keys
  2. 设置环境变量:export APICLAWAPIKEY=hmslivexxx
  3. 基础URL:https://api.apiclaw.io/openapi/v2
  4. 认证方式:Authorization: Bearer YOURAPI_KEY
  5. 所有端点:POST请求,JSON格式请求体

新密钥需要3-5秒激活。如果返回403,请等待后重试。

API端点

#端点功能说明关键输出
1categories浏览亚马逊类目树categoryName, categoryPath, productCount, hasChildren
2
markets/search | 市场级聚合指标 | sampleAvgMonthlySales, sampleAvgPrice, sampleBrandCount, topSalesRate, sampleFbaRate | | 3 | products/search | 产品搜索,14种预设策略 | asin, title, price, bsrRank, atLeastMonthlySales, rating, ratingCount | | 4 | products/competitor-lookup | 按关键词/ASIN进行竞品分析 | 竞品信息(含销量、收入、卖家信息) | | 5 | realtime/product | 单个ASIN实时详情 | title, rating, features, variants, bestsellersRank, buyboxWinner | | 6 | reviews/analyze | AI驱动的评论洞察 | sentimentDistribution, consumerInsights (painPoints, buyingFactors等) |

端点详情

1. 类目

浏览或搜索亚马逊类目层级。

POST /openapi/v2/categories
{categoryKeyword: pet supplies} # 按关键词搜索
{parentCategoryPath: [Pet Supplies]} # 浏览子类目

⚠️ 使用 categoryKeyword(而非 keyword)和 parentCategoryPath(而非 parentCategoryName)。

2. 市场

类目级市场指标——回答这个市场值得进入吗?

POST /openapi/v2/markets/search
{categoryPath: [Pet Supplies, Dogs, Toys], topN: 10}

⚠️ topN 必须是字符串(3、5、10、20),不能是整数。

返回:sampleAvgMonthlySales、sampleAvgPrice、sampleBrandCount、sampleSellerCount、topSalesRate(集中度)、sampleNewSkuRate、sampleFbaRate。

3. 产品

支持筛选或14种内置选择模式的产品搜索。

POST /openapi/v2/products/search
{keyword: yoga mat, mode: beginner}

14种模式:beginner、fast-movers、emerging、long-tail、underserved、new-release、fbm-friendly、low-price、single-variant、high-demand-low-barrier、broad-catalog、selective-catalog、speculative、top-bsr。

关键字段:atLeastMonthlySales(下限估算)、bsrRank(整数)、ratingCount(非reviewCount)、price、profitMargin、fbaFee。

4. 竞品

按关键词、品牌或特定ASIN发现竞品。

POST /openapi/v2/products/competitor-lookup
{keyword: wireless earbuds}
{asin: B09V3KXJPB}

返回与 products/search 相同的产品字段。

5. 实时产品

单个ASIN的实时数据——当前列表内容和定价。

POST /openapi/v2/realtime/product
{asin: B09V3KXJPB}

关键响应字段:

字段类型说明
title、brandString基本信息
rating、ratingCount
Float/Int | 评分数据 |
| ratingBreakdown | Object | {five_star: {percentage, count}, ...} |
| features | List | 要点描述 |
| bestsellersRank | Array | [{category, rank}, ...] — 非单个整数 |
| buyboxWinner | Object | {price, fulfillment, seller} — 价格在此嵌套 |
| topReviews | List | 带标题、正文、评分的顶级评论 |
| variants | List | 所有变体及尺寸 |

⚠️ 不返回:atLeastMonthlySales、profitMargin、fbaFee、sellerCount。如需这些字段,请使用 products/competitor-lookup。
⚠️ 价格嵌套在 buyboxWinner.price 中,非顶层 price。

6. 评论分析

基于AI的消费者评论洞察。

POST /openapi/v2/reviews/analyze

单个或多个ASIN(需要mode + asins)

{mode: asin, asins: [B09V3KXJPB]} {mode: asin, asins: [B09V3KXJPB, B08YYYYY]}

类目级洞察

{mode: category, categoryPath: Pet Supplies,Dogs,Toys, period: 90d}

筛选特定维度

{mode: asin, asins: [B09V3KXJPB], labelType: painPoints}

⚠️ mode 是必填项(asin 或 category)。
⚠️ 使用 asins(复数,数组),而非 asin(单数,字符串)。

11个洞察维度(labelType):painPoints、improvements、buyingFactors、issues、positives、scenarios、keywords、userProfiles、usageTimes、usageLocations、behaviors。

返回:totalReviews、avgRating、sentimentDistribution、ratingDistribution、consumerInsights、topKeywords、verifiedRatio。

⚠️ 各端点字段差异

4种端点类型返回不同的字段。不要假设它们共享相同的结构。

数据marketsproducts/competitorsrealtime/productreviews/analyze
月销量sampleAvgMonthlySales✅ atLeastMonthlySales
价格
sampleAvgPrice | price | buyboxWinner.price | ❌ |
| BSR | sampleAvgBsr | bsrRank(整数) | bestsellersRank(数组) | ❌ |
| 评分 | sampleAvgRating | rating | rating | avgRating |
| 评论数 | sampleAvgReviewCount | ratingCount | ratingCount | totalReviews |
| 情感分析 | ❌ | ❌ | ❌ | ✅ sentimentDistribution |
| 消费者洞察 | ❌ | ❌ | ❌ | ✅ consumerInsights |
| 痛点 | ❌ | ❌ | ❌(从topReviews手动提取) | ✅ AI分析 |
| 利润率 | ❌ | profitMargin | ❌ | ❌ |
| FBA费用 | ❌ | fbaFee | ❌ | ❌ |
| 特性/要点 | ❌ | ❌ | ✅ features | ❌ |
| 变体 | ❌ | variantCount(整数) | variants(完整列表) | ❌ |

各端点最佳用途

需求使用此端点
销量、定价、竞争数据products/search 或 products/competitor-lookup
实时定价、评论、列表内容
realtime/product | | 类目级市场规模 | markets/search | | 消费者痛点、情感、购买因素 | reviews/analyze | | 类目浏览/验证 | categories | | 完整产品画像 | 组合使用 products(定量)+ realtime(定性)+ reviews(洞察) |

已知特性

  1. 1. topN 和 newProductPeriod 是字符串——使用 10 而非 10
  2. listingAge 是字符串——使用 180 而非 180
  3. 所有响应的 .data 是数组——使用 .data[0] 而非 .data.fieldName
  4. ratingCount 而非 reviewCount——所有地方字段名均为 ratingCount
  5. products/competitors中的 bsrRank(整数)vs real

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 apiclaw-amazon-api-1776110102 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 apiclaw-amazon-api-1776110102 技能

通过命令行安装

skillhub install apiclaw-amazon-api-1776110102

下载

⬇ 下载 apiclaw v1.0.0(免费)

文件大小: 6.17 KB | 发布时间: 2026-4-14 13:31

v1.0.0 最新 2026-4-14 13:31
Initial release: 6 endpoints (categories, markets, products, competitors, realtime, reviews), field difference table, known quirks, verified with live API testing

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部