主题
aba_get_word_detail
获取指定关键词的完整信息,包括基本属性、排名历史趋势、最新一期 Top3 ASIN 商品。
用途
- 深入分析某个关键词的竞争格局
- 查看关键词排名历史趋势(最多 52 周)
- 了解占据该关键词 Top3 位置的 ASIN 及其点击/转化占比
- 结合
aba_reverse_asin做竞品关键词双向分析
参数
| 名称 | 类型 | 必填 | 约束 | 说明 |
|---|---|---|---|---|
wordId | string | ✅ | — | 关键词 ID(来自 aba_get_rank_list 或 aba_search_keywords) |
计费
- 1 unit / 次
使用示例
json
{ "wordId": "1234567890123456789" }返回结构
json
{
"success": true,
"data": {
"detail": {
"word_id": "1234567890123456789",
"country": "us",
"word": "bluetooth speaker",
"word_cn": "蓝牙音箱",
"first_seen_date": "2025-01-12",
"last_seen_date": "2026-05-11"
},
"latestGoods": [
{
"position": 1,
"asin": "B08N5WRWNW",
"name": null,
"click": 45000,
"conversion": 3200
},
{
"position": 2,
"asin": "B09XS7JWHH",
"name": null,
"click": 38000,
"conversion": 2800
},
{
"position": 3,
"asin": "B0CHX1W1XY",
"name": null,
"click": 30000,
"conversion": 2100
}
],
"history": {
"count": 52,
"points": [
{
"report_date": "2026-05-11",
"new_rank": 1,
"old_rank": 2,
"fluctuation": 1,
"click_sum": 150000,
"conv_sum": 12000
}
]
}
}
}| 字段 | 说明 |
|---|---|
detail.word_id | 关键词 ID |
detail.word | 关键词原文 |
detail.word_cn | 中文翻译(可能为 null) |
detail.first_seen_date | 首次出现在榜单中的日期 |
detail.last_seen_date | 最近一次出现在榜单中的日期 |
latestGoods | 最新一期 Top3 ASIN 商品(按 position 1-3 排序) |
latestGoods[].position | 商品排名位置(1-3) |
latestGoods[].click | 该 ASIN 在此关键词下的点击量 |
latestGoods[].conversion | 该 ASIN 在此关键词下的转化量 |
history.points | 排名历史(按 report_date 倒序,最多 52 周) |
关于
name字段:latestGoods中的name固定为null(ASIN 商品名需用keepa_get_product另行获取)。
相关工具
- aba_get_rank_list —— 浏览榜单获取 word_id
- aba_search_keywords —— 搜索关键词获取 word_id
- aba_reverse_asin —— 从 ASIN 反查关键词
- keepa_get_product —— 获取 ASIN 商品详情