关键词联想 Live
POST
/v3/keywords_data/google_ads/suggestions/live从种子关键词扩展相关词、长尾词、问题型词。内容集群(Topic Cluster)规划与长尾 SEO 的常用工具。
参考价:约 ¥0.8000 / 次(实际以请求返回为准)
请求体
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| keyword | string | 是 | 种子关键词 |
| location_code | integer | 是 | 目标市场地理位置代码 |
| language_code | string | 是 | 语言代码 |
| limit | integer | 否 | 返回联想词数量 |
请求示例
curl
curl -X POST "https://api.seermartech.cn/v3/keywords_data/google_ads/suggestions/live" \
-H "Authorization: Bearer smt_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '[{
"keyword": "SEO工具",
"location_code": 2156,
"language_code": "zh",
"limit": 50
}]'Python
import requests
resp = requests.post(
"https://api.seermartech.cn/v3/keywords_data/google_ads/suggestions/live",
headers={"Authorization": "Bearer smt_live_YOUR_KEY"},
json=[{
"keyword": "SEO工具",
"location_code": 2156,
"language_code": "zh",
"limit": 50,
}],
timeout=120,
)
for item in resp.json()["tasks"][0]["result"][:10]:
print(item["keyword"], item.get("search_volume"))TypeScript
const resp = await fetch(
"https://api.seermartech.cn/v3/keywords_data/google_ads/suggestions/live",
{
method: "POST",
headers: {
Authorization: "Bearer smt_live_YOUR_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify([{
keyword: "SEO工具",
location_code: 2156,
language_code: "zh",
limit: 50,
}]),
}
);
const data = await resp.json();
console.log(data.tasks[0].result.slice(0, 10));响应字段(常用)
| 字段 | 说明 |
|---|---|
keyword | 联想关键词 |
search_volume | 月搜索量 |
cpc | CPC |
业务提示
- 对每个高价值种子词跑一轮 suggestions,可快速构建 100+ 长尾词库
- 联想结果建议再用 搜索量查询 批量验证
- 适合 FAQ 页面、博客选题批量生成