Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/tld-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}