/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}