WHOIS 概览 Live
POST
/v3/domain_analytics/whois/overview/live获取域名 WHOIS 注册信息摘要:注册商、创建/过期日期、名称服务器等。
参考价:约 ¥0.3200 / 次(实际以请求返回为准)
请求体
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| target | string | 是 | 目标域名 |
请求示例
curl
curl -X POST "https://api.seermartech.cn/v3/domain_analytics/whois/overview/live" \
-H "Authorization: Bearer smt_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '[{"target": "example.com"}]'Python
import requests
resp = requests.post(
"https://api.seermartech.cn/v3/domain_analytics/whois/overview/live",
headers={"Authorization": "Bearer smt_live_YOUR_KEY"},
json=[{"target": "example.com"}],
timeout=120,
)
print(resp.json()["tasks"][0]["result"][0])TypeScript
const resp = await fetch(
"https://api.seermartech.cn/v3/domain_analytics/whois/overview/live",
{
method: "POST",
headers: { Authorization: "Bearer smt_live_YOUR_KEY", "Content-Type": "application/json" },
body: JSON.stringify([{ target: "example.com" }]),
}
);
console.log((await resp.json()).tasks[0].result[0]);响应字段(常用)
| 字段 | 说明 |
|---|---|
created_datetime | 注册日期 |
expiration_datetime | 过期日期 |
registrar | 注册商 |
name_servers | DNS 服务器 |
业务场景
- 竞品域名年龄与续费状态分析
- 外链 outreach 前验证域名有效性