Referencia para desarrolladores
Cobertura de TLD
API de DomScan: Obtén la lista de TLD compatibles y el estado de sus endpoints RDAP.
Cobertura de TLD
Obtén la lista de TLD compatibles y el estado de sus endpoints RDAP.
GET
/v1/coverage
Parámetros de consulta
| Parámetro | Tipo | Descripción |
|---|---|---|
| live opcional | boolean | Probar los endpoints RDAP en tiempo real (más lento) |
Campos de respuesta
| Campo | Tipo |
|---|---|
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 |
Respuesta de ejemplo
{
"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
}
}

