/v1/resolve
Forward-resolve a .tez name to its owner
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/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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"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
}