/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/tld-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tld-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tld-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/tld-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"idn": 151,
"gtld": 1038,
"cctld": 248,
"service": "tld-api",
"endpoints": {
"GET /v1/tld": "Look up / validate a TLD (tld=, e.g. com — also accepts a full domain).",
"GET /v1/list": "List TLDs, optionally by type (type=cctld|gtld|idn, limit, offset).",
"GET /v1/meta": "This document.",
"GET /v1/search": "Search TLDs by label or country (q=).",
"GET /v1/country": "ccTLD for a country (code=, e.g. de or Germany)."
},
"total_tlds": 1437,
"description": "IANA root-zone TLD reference: every current top-level domain with its type (ccTLD / gTLD / IDN), A-label, Unicode form and, for ccTLDs, the country. Source: IANA tlds-alpha-by-domain.txt. No key.",
"iana_version": "2026060800"
},
"meta": {
"timestamp": "2026-06-08T18:25:12.326Z",
"request_id": "1c7ed8c3-41df-4ba3-9b52-7c019bab1016"
},
"status": "ok",
"message": "Meta",
"success": true
}