/v1/domains
Browse recently-active .tez domains
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/tezosdomains-api/v1/domains" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezosdomains-api/v1/domains", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezosdomains-api/v1/domains");
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/domains",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "The most recently active .tez domains — each with its name, owner address, the address it points to, registration level and expiry. Tezos Domains is Tezos's naming service (the .tez equivalent of ENS). Paginate with limit; resolve a name in /v1/resolve, an address in /v1/reverse.",
"count": 25,
"source": "TzKT",
"domains": [
{
"name": "neuromechsvault.tez",
"level": 2,
"owner": "tz1hLRwrB8Mrj6K3bGg8z5hz4VTpkSFCx1FS",
"address": "tz1hLRwrB8Mrj6K3bGg8z5hz4VTpkSFCx1FS",
"last_time": "2026-06-14T14:41:58Z",
"expiration": "2029-06-13T14:41:58Z",
"first_time": "2026-06-14T14:41:58Z",
"owner_alias": null
},
{
"name": "xxxxxx.tez",
"level": 2,
"owner": "tz1T1nTR7FREghqvUi2UF3TUiUFyvLVtqe8a",
"address": null,
"last_time": "2026-06-14T01:31:25Z",
"expiration": "2027-04-06T23:00:43Z",
"first_time": "2021-08-02T04:02:38Z",
"owner_alias": null
},
{
"name": "basel.tez",
"level": 2,
"owner": "tz1dAW94vB3yYfNPE4LM2txBT8PQ21Zq4Xzf",
"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"
},
{
"name": "ever.tez",
"level": 2,
"owner": "tz1YeNvxVb5fv2Tf3mWzg4XuqcXMBFq9U45z",
"address": "tz1YeNvxVb5fv2Tf3mWzg4XuqcXMBFq9U45z",
"last_time": "2026-06-13T20:28:28Z",
"expiration": "2034-05-20T21:07:28Z",
"first_time": "2025-05-22T21:07:28Z",
"owner_alias": "everthallus"
},
{
"name": "peddler.tez",
"level": 2,
"owner": "tz1YeNvxVb5fv2Tf3mWzg4XuqcXMBFq9U45z",
"address": "tz1YeNvxVb5fv2Tf3mWzg4XuqcXMBFq9U45z",
"last_time": "2026-06-13T20:27:16Z",
"expiration": "2033-05-26T02:14:44Z",
"first_time": "2021-09-26T20:54:54Z",
"owner_alias": "everthallus"
},
{
"name": "baghorn.tez",
"level": 2,
"owner": "tz1YeNvxVb5fv2Tf3mWzg4XuqcXMBFq9U45z",
"address": "tz1YeNvxVb5fv2Tf3mWzg4XuqcXMBFq9U45z",
"last_time": "2026-06-13T20:25:16Z",
"expiration": "2033-05-26T02:09:40Z",
"first_time": "2025-05-28T02:09:40Z",
"owner_alias": "everthallus"
},
{
"name": "everthallus.tez",
"level": 2,
…