Ir al contenido
GET /v1/resolve

Forward-resolve a .tez name to its owner

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

Respuesta de ejemplo

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

{
    "data": {
        "name": "basel.tez",
        "note": "Forward resolution — the .tez domain resolved to the address that owns it, plus the address it points to and its expiry. This is how a wallet turns 'alice.tez' into a tz1 address. Omit name to resolve a recently-active domain.",
        "level": 2,
        "owner": "tz1dAW94vB3yYfNPE4LM2txBT8PQ21Zq4Xzf",
        "query": "basel.tez",
        "source": "TzKT",
        "address": null,
        "last_time": "2026-06-13T22:18:55Z",
        "expiration": "2027-06-26T04:52:44Z",
        "first_time": "2021-05-18T09:09:46Z",
        "owner_alias": "Den Scalemodal"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:57.290Z",
        "request_id": "d40027c7-75fb-42dc-a83f-d7ebdea2450a"
    },
    "status": "ok",
    "message": "Domain resolved successfully",
    "success": true
}