关键词概览 Live
POST
/v3/dataforseo_labs/google/keyword_overview/live参考价:约 ¥0.3200 / 次(实际以请求返回为准)
请求体
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| keywords | array | 是 | 关键词 |
| location_code | integer | 是 | 地区 |
| language_code | string | 是 | 语言 |
请求示例
curl
curl -X POST "https://api.seermartech.cn/v3/dataforseo_labs/google/keyword_overview/live" \
-H "Authorization: Bearer smt_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '[{"keywords":["seo api"],"location_code":2840,"language_code":"en"}]'Python
import requests
resp = requests.post(
"https://api.seermartech.cn/v3/dataforseo_labs/google/keyword_overview/live",
headers={"Authorization": "Bearer smt_live_YOUR_KEY"},
json=[{"keywords":["seo api"],"location_code":2840,"language_code":"en"}],
timeout=120,
)
print(resp.json()["tasks"][0]["result"])TypeScript
const resp = await fetch("https://api.seermartech.cn/v3/dataforseo_labs/google/keyword_overview/live", {
method: "POST",
headers: { Authorization: "Bearer smt_live_YOUR_KEY", "Content-Type": "application/json" },
body: JSON.stringify([{"keywords":["seo api"],"location_code":2840,"language_code":"en"}]),
});
console.log((await resp.json()).tasks[0].result);业务场景
- API 集成与数据分析