Google Ads 搜索量 Live
POST
/v3/keywords_data/google_ads/search_volume/live批量查询关键词的月搜索量、CPC、竞争度(Google Ads 数据)。选词、内容规划、ROI 估算的核心步骤。
参考价:约 ¥1.2000 / 次(实际以请求返回为准)
请求体
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| keywords | array | 是 | 关键词数组,最多约 1000 个 |
| location_code | integer | 是 | 目标市场地理位置代码 |
| language_code | string | 是 | 语言代码 |
| date_from | string | 否 | 历史数据起始月,如 2024-01-01 |
| date_to | string | 否 | 历史数据结束月 |
请求示例
curl
curl -X POST "https://api.seermartech.cn/v3/keywords_data/google_ads/search_volume/live" \
-H "Authorization: Bearer smt_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '[{
"keywords": ["SEO工具", "关键词研究", "外链分析"],
"location_code": 2156,
"language_code": "zh"
}]'Python
import requests
resp = requests.post(
"https://api.seermartech.cn/v3/keywords_data/google_ads/search_volume/live",
headers={"Authorization": "Bearer smt_live_YOUR_KEY"},
json=[{
"keywords": ["SEO工具", "关键词研究", "外链分析"],
"location_code": 2156,
"language_code": "zh",
}],
timeout=120,
)
data = resp.json()
for item in data["tasks"][0]["result"]:
print(item["keyword"], item.get("search_volume"), item.get("cpc"))TypeScript
const resp = await fetch(
"https://api.seermartech.cn/v3/keywords_data/google_ads/search_volume/live",
{
method: "POST",
headers: {
Authorization: "Bearer smt_live_YOUR_KEY",
"Content-Type": "application/json",
},
body: JSON.stringify([{
keywords: ["SEO工具", "关键词研究", "外链分析"],
location_code: 2156,
language_code: "zh",
}]),
}
);
const data = await resp.json();
data.tasks[0].result.forEach((item: { keyword: string; search_volume?: number }) => {
console.log(item.keyword, item.search_volume);
});响应字段(常用)
| 字段 | 说明 |
|---|---|
keyword | 关键词 |
search_volume | 月均搜索量 |
cpc | 每次点击成本(USD) |
competition | 竞争度 LOW / MEDIUM / HIGH |
monthly_searches | 逐月搜索量历史 |
业务提示
- 一次提交多个词比多次单词请求更省 cost
- 搜索量为 0 的词可直接从内容计划中剔除
- 配合 关键词研究工作流 做自动化选词