API Couverture TLD
Obtenez la liste des TLD pris en charge et l'état des points de terminaison RDAP. Utilisez cette référence pour choisir une opération et intégrer son contrat de réponse documenté.
Opérations
GET /v1/coverage
GET
/v1/coverage
Paramètres de Requête
| Paramètre | Type | requis |
|---|---|---|
| live |
string
Valeurs autorisées
1
|
optionnel |
Champs de Réponse
| Champ | Type |
|---|---|
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 |
Exemple de Requête
curl "https://domscan.net/v1/coverage?live=example.com"
Exemple de Réponse
{
"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
}
}