SeerMarTech 文档控制台

竞品域名 Live

POST/v3/dataforseo_labs/google/competitors_domain/live

发现与目标域名在 organic 搜索中竞争重叠的竞品域名,按重叠关键词数排序。

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

请求体

参数类型必填说明
targetstring目标域名
location_codeinteger目标市场代码
language_codestring语言代码
limitinteger返回竞品数

请求示例

curl

curl -X POST "https://api.seermartech.cn/v3/dataforseo_labs/google/competitors_domain/live" \ -H "Authorization: Bearer smt_live_YOUR_KEY" \ -H "Content-Type: application/json" \ -d '[{"target": "mysite.com", "location_code": 2156, "language_code": "zh", "limit": 20}]'

Python

import requests resp = requests.post( "https://api.seermartech.cn/v3/dataforseo_labs/google/competitors_domain/live", headers={"Authorization": "Bearer smt_live_YOUR_KEY"}, json=[{"target": "mysite.com", "location_code": 2156, "language_code": "zh", "limit": 20}], timeout=120, ) for c in resp.json()["tasks"][0]["result"][0]["items"][:10]: print(c.get("domain"), c.get("avg_position"), c.get("intersections"))

TypeScript

const resp = await fetch( "https://api.seermartech.cn/v3/dataforseo_labs/google/competitors_domain/live", { method: "POST", headers: { Authorization: "Bearer smt_live_YOUR_KEY", "Content-Type": "application/json" }, body: JSON.stringify([{ target: "mysite.com", location_code: 2156, language_code: "zh", limit: 20 }]), } ); console.log((await resp.json()).tasks[0].result[0].items.slice(0, 10));

业务场景