SeerMarTech 文档控制台

技术栈域名查询 Live

POST/v3/domain_analytics/technologies/domains_by_technology/live

按 Web 技术(CMS、分析工具、CDN 等)查找使用该技术的域名列表,适合 B2B lead gen 与竞品技术栈分析。

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

请求体

参数类型必填说明
technologystring技术名称,如 WordPress、React
limitinteger返回域名数
filtersarray过滤条件

请求示例

curl

curl -X POST "https://api.seermartech.cn/v3/domain_analytics/technologies/domains_by_technology/live" \ -H "Authorization: Bearer smt_live_YOUR_KEY" \ -H "Content-Type: application/json" \ -d '[{"technology": "WordPress", "limit": 50}]'

Python

import requests resp = requests.post( "https://api.seermartech.cn/v3/domain_analytics/technologies/domains_by_technology/live", headers={"Authorization": "Bearer smt_live_YOUR_KEY"}, json=[{"technology": "WordPress", "limit": 50}], timeout=120, ) for d in resp.json()["tasks"][0]["result"][0]["items"][:10]: print(d.get("domain"))

TypeScript

const resp = await fetch( "https://api.seermartech.cn/v3/domain_analytics/technologies/domains_by_technology/live", { method: "POST", headers: { Authorization: "Bearer smt_live_YOUR_KEY", "Content-Type": "application/json" }, body: JSON.stringify([{ technology: "WordPress", limit: 50 }]), } ); console.log((await resp.json()).tasks[0].result[0].items.slice(0, 10));

业务场景