/v1/meta
Spec
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/tezos-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezos-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezos-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/tezos-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"source": "TzKT public indexer API (live)",
"service": "tezos-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/tokens": "An address's FA1.2/FA2 token balances (address=, limit).",
"GET /v1/account": "An address's state + delegation (address=tz1Ke2h7sDdakHJQh8WX4Z372du1KChsksyU).",
"GET /v1/network": "Live Tezos chain state: head level, cycle, protocol, total supply.",
"GET /v1/operations": "An address's recent transactions (address=, limit)."
},
"head_level": 13570281,
"description": "Live on-chain data from the Tezos blockchain (XTZ) via the public TzKT indexer: any address's state (XTZ balance, type, the baker it delegates to, staked balance, transaction count, first/last activity); its FA1.2 and FA2 token balances with contract, symbol and decoded amount; its recent transactions (counterparty, amount, status, time); and the live chain state (head level, cycle, protocol, total XTZ supply). Live, no key, nothing stored. Distinct from the XRP Ledger, Stellar, TRON, Aptos, Algorand, EVM and Solana on-chain APIs and from price feeds — this is Tezos account state, delegation, token balances, operations and ledger health.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T20:24:40.867Z",
"request_id": "7b90dabe-a416-4d8f-8969-68dd0dc78556"
},
"status": "ok",
"message": "Meta",
"success": true
}