主题
aba_search_keywords
在 ABA 关键词字典中全文搜索关键词。数据来源:Amazon Brand Analytics 关键词周榜。
用途
- 快速找到某个领域的关键词及其
word_id - 发现拼写变体、长尾关键词
- 作为
aba_get_word_detail的前置查询(先搜到 word_id,再查详情)
参数
| 名称 | 类型 | 必填 | 默认 | 约束 | 说明 |
|---|---|---|---|---|---|
country | enum | ✅ | — | — | Amazon 站点代码(ABA 支持 9 个站点) |
keyword | string | ✅ | — | — | 搜索关键词。英文走 FULLTEXT 全文索引(按相关性排序),中文走 LIKE 模糊 |
limit | integer | 20 | 1–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。
相关工具
- aba_get_word_detail —— 查看关键词详情与排名历史
- aba_get_rank_list —— 按排名维度浏览榜单
和 HTTP API 的对应
- HTTP:
GET /api/aba/search