Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/tezosdomains-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/tezosdomains-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezosdomains-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezosdomains-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/tezosdomains-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "sample": {
            "recent_domain": "neuromechsvault.tez"
        },
        "source": "public TzKT indexer (api.tzkt.io), keyless",
        "service": "tezosdomains-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/domains": "Browse recently-active .tez domains (limit).",
            "GET /v1/resolve": "Forward-resolve a .tez name to its owner (name; omit for a recent one).",
            "GET /v1/reverse": "Reverse-resolve an address to its .tez names (address; omit for a recent owner)."
        },
        "description": "Read the Tezos Domains (.tez) naming service live from the public TzKT indexer: browse recently-active .tez domains, forward-resolve a name to its owner address, and reverse-resolve an address to the names registered to it. The identity / naming layer for Tezos wallets, explorers and payment UX. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:57.460Z",
        "request_id": "0416b07d-6bd6-4469-97da-8a7496b6bea7"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}