SeerMarTech 文档控制台

Google Ads 搜索量 Live

POST/v3/keywords_data/google_ads/search_volume/live

批量查询关键词的月搜索量、CPC、竞争度(Google Ads 数据)。选词、内容规划、ROI 估算的核心步骤。

参考价:¥1.2000 / 次(实际以请求返回为准)

请求体

参数类型必填说明
keywordsarray关键词数组,最多约 1000 个
location_codeinteger目标市场地理位置代码
language_codestring语言代码
date_fromstring历史数据起始月,如 2024-01-01
date_tostring历史数据结束月

请求示例

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逐月搜索量历史

业务提示