This skill queries the historical exact search volume for Amazon keywords via the Jungle Scout data source, returning weekly search volume data points over a specified date range across 10 Amazon marketplaces.
Jungle Scout 关键词历史搜索量工具提供亚马逊各站点关键词的周维度精确匹配搜索量历史数据。卖家可以通过查询指定时间范围内的搜索量变化来判断:
数据粒度:每条记录代表一个 7 天周期,包含该周内的精确匹配搜索量估算值。
| Field | API Name | Description | Example |
|-------|----------|-------------|---------|
| 周期标识 | id | 数据周期标识(市场/关键词/日期范围) | us_sushi_20250105_20250111 |
| 周期开始日期 | estimateStartDate | 7天统计周期的起点 | 2025-01-05 |
| 周期结束日期 | estimateEndDate | 7天统计周期的终点 | 2025-01-11 |
| 精确搜索量 | estimatedExactSearchVolume | 该周期内精确匹配搜索量(次/周) | 12500 |
| 资源类型 | type | 固定值 | historical_keyword_search_volume |
| 消耗Token | costToken | 本次调用消耗的 token 数 | 1 |
| 站点 | marketplace 值 | 说明 |
|------|---------------|------|
| 美国 | us | Amazon.com |
| 英国 | uk | Amazon.co.uk |
| 德国 | de | Amazon.de |
| 印度 | in | Amazon.in |
| 加拿大 | ca | Amazon.ca |
| 法国 | fr | Amazon.fr |
| 意大利 | it | Amazon.it |
| 西班牙 | es | Amazon.es |
| 墨西哥 | mx | Amazon.com.mx |
| 日本 | jp | Amazon.co.jp |
默认站点为 us。当用户未指定站点时,使用 us。
POST /tool-jungle-scout/keywords/historical-search-volume(完整参数/响应/错误码见 references/api.md)
python scripts/junglescout_keyword_history.py '' [--inline]
输出策略(脚本默认行为):
/linkfox///data/linkfox-junglescout-keyword-history-.json ( 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录; 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
total/costToken、最大列表字段的长度 + 前 3 条样本)
--inline 强制全量打印到 stdout(同样落盘)
读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jq或ConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
所有四个参数均为必填:marketplace、keyword、startDate、endDate。
us,"日本站"→ jp,"德国站"→ de;未指定时默认 us
YYYY-MM-DD,如 2025-01-05
startDate 到 endDate 最长 366 天;超过时需拆分为多次请求
2025-01-01 到 2025-12-31
10-01 到 12-31
1. 查看关键词近半年搜索趋势
{
"marketplace": "us",
"keyword": "yoga mat",
"startDate": "2025-10-01",
"endDate": "2026-03-31"
}
2. 判断关键词季节性(查全年数据)
{
"marketplace": "us",
"keyword": "christmas decorations",
"startDate": "2025-01-01",
"endDate": "2025-12-31"
}
3. 对比旺季与淡季搜索量
分两次调用:
startDate=2025-02-01, endDate=2025-04-30
startDate=2025-10-01, endDate=2025-12-31
4. 多站点对比
对同一关键词分别查询不同 marketplace(如 us、de、jp),比较各站搜索量规模。
5. 验证市场需求是否增长
{
"marketplace": "de",
"keyword": "luftreiniger",
"startDate": "2025-04-01",
"endDate": "2026-03-31"
}
startDate 到 endDate 最长 366 天,超过需拆分查询
marketplace、keyword、startDate、endDate 缺一不可
Applicable - 关键词搜索量历史趋势分析:
| User Says | Scenario |
|-----------|----------|
| "这个词搜索量怎么变化的" | 搜索量趋势查询 |
| "这个品类有没有季节性" | 全年数据判断季节规律 |
| "搜索量最近在涨还是跌" | 近期趋势判断 |
| "什么时候是旺季" | 峰值周期识别 |
| "去年Q4搜索量多少" | 指定时间段搜索量查询 |
| "这个词在德国站热不热" | 非美国站搜索量查询 |
| "对比两个时间段的搜索量" | 旺淡季/同比对比 |
Not applicable - 超出关键词历史搜索量范围:
Boundary judgment: When users say "搜索量", "关键词热度", or "市场需求趋势", if they specifically want to see how a keyword's search volume changes over a period of time (historical trend), this skill applies. If they want the current ranking or a list of trending keywords, it does not apply.
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.
For more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.
共 2 个版本