개발자 참고자료
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
}
}

