Skip to content

aba_get_word_detail

获取指定关键词的完整信息,包括基本属性、排名历史趋势、最新一期 Top3 ASIN 商品。

用途

  • 深入分析某个关键词的竞争格局
  • 查看关键词排名历史趋势(最多 52 周)
  • 了解占据该关键词 Top3 位置的 ASIN 及其点击/转化占比
  • 结合 aba_reverse_asin 做竞品关键词双向分析

参数

名称类型必填约束说明
wordIdstring关键词 ID(来自 aba_get_rank_listaba_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 另行获取)。

相关工具

和 HTTP API 的对应