SeerMarTech 文档控制台

关键词联想 Live

POST/v3/keywords_data/google_ads/suggestions/live

从种子关键词扩展相关词、长尾词、问题型词。内容集群(Topic Cluster)规划与长尾 SEO 的常用工具。

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

请求体

参数类型必填说明
keywordstring种子关键词
location_codeinteger目标市场地理位置代码
language_codestring语言代码
limitinteger返回联想词数量

请求示例

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月搜索量
cpcCPC

业务提示