TLD 지원 범위 API 레퍼런스
지원되는 TLD 목록과 RDAP 엔드포인트의 운영 상태를 조회합니다. 이 레퍼런스를 사용해 작업을 선택하고 문서화된 응답 계약을 통합하세요.
작업
GET /v1/coverage
GET
/v1/coverage
쿼리 매개변수
| 매개변수 | 유형 | 필수 |
|---|---|---|
| live |
string
허용된 값
1
|
선택 사항 |
응답 필드
| 필드 | 유형 |
|---|---|
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 |
예제 요청
curl "https://domscan.net/v1/coverage?live=example.com"
예제 응답
{
"gtlds": [
"string"
],
"cctlds": [
"string"
],
"total_tlds": 1,
"all_tlds": [
"string"
],
"rdap_health": [
{
"tld": "com",
"endpoint": "https://example.com",
"ok": true,
"p50_ms": 1,
"error_rate": 1
}
],
"bootstrap_source": "iana",
"bootstrap_last_updated": "2026-04-15T12:00:00Z",
"meta": {
"served_by": "string",
"bootstrap_ttl_s": 1,
"live": true
}
}