Skip to content

aba_search_keywords

在 ABA 关键词字典中全文搜索关键词。数据来源:Amazon Brand Analytics 关键词周榜。

用途

  • 快速找到某个领域的关键词及其 word_id
  • 发现拼写变体、长尾关键词
  • 作为 aba_get_word_detail 的前置查询(先搜到 word_id,再查详情)

参数

名称类型必填默认约束说明
countryenumAmazon 站点代码(ABA 支持 9 个站点)
keywordstring搜索关键词。英文走 FULLTEXT 全文索引(按相关性排序),中文走 LIKE 模糊
limitinteger201–200返回条数

计费

  • 1 unit / 次

使用示例

搜索美国站含 "bluetooth" 的关键词:

json
{ "country": "us", "keyword": "bluetooth", "limit": 20 }

搜索德国站含 "anker" 的关键词:

json
{ "country": "de", "keyword": "anker" }

返回结构

json
{
  "success": true,
  "data": {
    "country": "us",
    "keyword": "bluetooth",
    "count": 15,
    "words": [
      {
        "word_id": "1234567890123456789",
        "word": "bluetooth speaker",
        "word_cn": "蓝牙音箱",
        "country": "us"
      }
    ]
  }
}

注意:此接口仅返回字典中的关键词条目,不包含排名数据。如需排名,请用返回的 word_id 调用 aba_get_word_detail

相关工具

和 HTTP API 的对应