This skill helps screen and rank Amazon category markets using SellerSprite market-research data.
min/max)须为 0~1 小数,见下文参数表与 references/api.md。
POST /sellersprite/market/research(完整参数/响应/错误码见 references/api.md)
python scripts/sellersprite_market_research.py '' [--inline]
输出策略(脚本默认行为):
/linkfox///data/linkfox-sellersprite-market-research-.json ( 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录; 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
total/costToken、最大列表字段的长度 + 前 3 条样本)
--inline 强制全量打印到 stdout(同样落盘)
读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jq或ConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
> 接口筛选项与工具 _sellersprite_market_research 一致(70+);下表为常用子集,完整参数与出参字段见 references/api.md。
| 参数 | 类型 | 必填 | 说明 |
|------|------|------|------|
| marketplace | string | 是 | 站点编码,默认 US |
| month | string | 否 | nearly 或 yyyyMM |
| nodeIdPath | string | 否 | 类目节点路径 |
| departmentKeyword | string | 否 | 类目关键字路径 |
| page / size | integer | 否 | 分页,默认 1/50,size 最大 200 |
| orderField / orderDesc | string/boolean | 否 | 排序字段与方向;orderDesc 默认 true(降序) |
| minAvgRevenue / maxAvgRevenue | number | 否 | 月均销售额范围 |
| minAvgUnits / maxAvgUnits | integer | 否 | 月均销量范围 |
| minGoodsCount / maxGoodsCount | integer | 否 | 商品数量范围 |
| minGoodsCrn / maxGoodsCrn | number | 否 | 商品集中度(小数 0~1,如 0.4 表示 40%,勿用整数 40) |
| minSellerCrn / maxSellerCrn | number | 否 | 卖家集中度(小数 0~1) |
| minBrandCrn / maxBrandCrn | number | 否 | 品牌集中度(小数 0~1) |
| minAmazonSelfProportion / maxAmazonSelfProportion | number | 否 | Amazon 自营占比(小数 0~1) |
| minFbaProportion / maxFbaProportion | number | 否 | FBA 占比(小数 0~1) |
| minFbmProportion / maxFbmProportion | number | 否 | FBM 占比(小数 0~1) |
| minEbcProportion / maxEbcProportion | number | 否 | A+ 数量占比(小数 0~1) |
| minNewProportion / maxNewProportion | number | 否 | 新品占比(刻度可能与上列不同,以 references/api.md / schema 为准) |
| minAvgPrice / maxAvgPrice | number | 否 | 平均价格范围 |
| minAvgRating / maxAvgRating | number | 否 | 平均评分范围 |
| minAvgProfit / maxAvgProfit | number | 否 | 平均毛利率(%) |
{
"marketplace": "US",
"month": "nearly",
"minAvgRevenue": 10000,
"maxGoodsCrn": 0.4,
"minNewProportion": 10,
"maxSellerCrn": 0.5,
"orderField": "total_amount",
"orderDesc": true,
"page": 1,
"size": 50
}
GoodsCrn / BrandCrn / SellerCrn / EbcProportion / FbaProportion / FbmProportion / AmazonSelfProportion 对应筛选为 0~1 小数;向用户说明时可换算为百分数(如传 0.4 可表述为「商品集中度上限 40%」)。响应 data[] 里若仍带「(%)」字段,与入参刻度可能不同,以返回为准。
references/api.md 为准。
marketplace
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.
共 3 个版本