Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/tld-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}