批量关键词难度 Live
POST
/v3/dataforseo_labs/google/bulk_keyword_difficulty/live批量查询关键词难度(Keyword Difficulty)分数,快速过滤过高竞争词,聚焦可排名机会。
参考价:约 ¥0.3200 / 次(实际以请求返回为准)
请求体
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| keywords | array | 是 | 关键词数组 |
| location_code | integer | 是 | 目标市场代码 |
| language_code | string | 是 | 语言代码 |
请求示例
curl
curl -X POST "https://api.seermartech.cn/v3/dataforseo_labs/google/bulk_keyword_difficulty/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/dataforseo_labs/google/bulk_keyword_difficulty/live",
headers={"Authorization": "Bearer smt_live_YOUR_KEY"},
json=[{"keywords": ["SEO工具", "关键词研究"], "location_code": 2156, "language_code": "zh"}],
timeout=120,
)
for item in resp.json()["tasks"][0]["result"]:
print(item.get("keyword"), item.get("keyword_difficulty"))TypeScript
const resp = await fetch(
"https://api.seermartech.cn/v3/dataforseo_labs/google/bulk_keyword_difficulty/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" }]),
}
);
console.log((await resp.json()).tasks[0].result);业务提示
- KD < 30 通常适合新站/content marketing
- 结合 搜索量查询 做二维筛选(量 × 难度)