域名关键词挖掘 Live
POST
/v3/keywords_data/google_ads/keywords_for_site/live获取指定域名在 Google Ads 中关联的关键词列表,含搜索量与排名位置估计。竞品词库挖掘的第一步。
参考价:约 ¥0.8000 / 次(实际以请求返回为准)
请求体
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| target | string | 是 | 目标域名,如 example.com(不含 https://) |
| location_code | integer | 是 | 目标市场地理位置代码 |
| language_code | string | 是 | 语言代码 |
| limit | integer | 否 | 返回关键词数量上限 |
请求示例
curl
curl -X POST "https://api.seermartech.cn/v3/keywords_data/google_ads/keywords_for_site/live" \
-H "Authorization: Bearer smt_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '[{
"target": "competitor.com",
"location_code": 2156,
"language_code": "zh",
"limit": 100
}]'Python
import requests
resp = requests.post(
"https://api.seermartech.cn/v3/keywords_data/google_ads/keywords_for_site/live",
headers={"Authorization": "Bearer smt_live_YOUR_KEY"},
json=[{
"target": "competitor.com",
"location_code": 2156,
"language_code": "zh",
"limit": 100,
}],
timeout=120,
)
keywords = [r["keyword"] for r in resp.json()["tasks"][0]["result"]]
print(f"found {len(keywords)} keywords")TypeScript
const resp = await fetch(
"https://api.seermartech.cn/v3/keywords_data/google_ads/keywords_for_site/live",
{
method: "POST",
headers: {
Authorization: "Bearer smt_live_YOUR_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify([{
target: "competitor.com",
location_code: 2156,
language_code: "zh",
limit: 100,
}]),
}
);
const data = await resp.json();
console.log(data.tasks[0].result.map((r: { keyword: string }) => r.keyword));响应字段(常用)
| 字段 | 说明 |
|---|---|
keyword | 关联关键词 |
search_volume | 月搜索量 |
cpc | CPC |
competition | 竞争度 |
业务场景
- 输入 3–5 个竞品域名,合并词库去重
- 筛出竞品有流量、自己未覆盖的词
- 作为 关键词研究工作流 Step 1