开发者参考
TLD 覆盖范围
通过 DomScan API,获取支持的 TLD 列表和 RDAP 端点健康状态。
TLD 覆盖范围
获取支持的 TLD 列表和 RDAP 端点健康状态。
GET
/v1/coverage
查询参数
| 参数 | 类型 | 说明 |
|---|---|---|
| live 可选 | boolean | 实时测试 RDAP 端点(速度较慢) |
响应字段
| 字段 | 类型 |
|---|---|
gtlds[] |
string[] |
cctlds[] |
string[] |
total_tlds |
integer |
all_tlds[] |
string[] |
rdap_health[] |
object[] |
rdap_health[] |
object |
rdap_health[].tld |
string |
rdap_health[].endpoint |
string |
rdap_health[].ok |
boolean |
rdap_health[].p50_ms |
number |
rdap_health[].error_rate |
number |
bootstrap_source |
string |
bootstrap_last_updated |
string |
meta |
object |
meta.served_by |
string |
meta.bootstrap_ttl_s |
integer |
meta.live |
boolean |
响应示例
{
"gtlds": [
"example"
],
"cctlds": [
"example"
],
"total_tlds": 1,
"all_tlds": [
"com"
],
"rdap_health": [
{
"tld": "com",
"endpoint": "https://example.com",
"ok": true,
"p50_ms": 1.5,
"error_rate": 0.5
}
],
"bootstrap_source": "iana",
"bootstrap_last_updated": "2026-08-27T12:00:00Z",
"meta": {
"served_by": "example",
"bootstrap_ttl_s": 1,
"live": false
}
}

