/v1/meta
Service metadata
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/tezostokens-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezostokens-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezostokens-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/tezostokens-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sample": {
"top_token": "4/23 McLaren F1 Collectible"
},
"source": "public TzKT indexer (api.tzkt.io), keyless",
"service": "tezostokens-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/tokens": "Browse/rank FA tokens & NFTs by holders (standard=fa1.2|fa2, limit).",
"GET /v1/holders": "A token's holders and decoded balances (token_id; omit for the most-held).",
"GET /v1/transfers": "A token's recent transfers (token_id; omit for the most-held)."
},
"description": "Browse the Tezos token universe live from the public TzKT indexer: discover and rank FA1.2/FA2 tokens and NFT collections (contract, standard, name, symbol, holders, supply, NFT artwork), list the holders of any token with decoded balances, and trace a token's transfers. The discovery, NFT and distribution layer for Tezos wallets, token explorers and NFT marketplaces. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:01.229Z",
"request_id": "1115a8b5-1066-4705-899d-58fe604c48fc"
},
"status": "ok",
"message": "Meta",
"success": true
}