/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/tezosbigmaps-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezosbigmaps-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezosbigmaps-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/tezosbigmaps-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"sample": {
"largest": "hic et nunc NFTs/ledger"
},
"source": "public TzKT indexer (api.tzkt.io), keyless",
"service": "tezosbigmaps-api",
"endpoints": {
"GET /v1/keys": "A bigmap's live key-value entries (ptr; omit for the largest).",
"GET /v1/meta": "This document.",
"GET /v1/bigmap": "One bigmap's detail and typed key/value schema (ptr; omit for the largest).",
"GET /v1/bigmaps": "Browse/rank bigmaps by key count (limit)."
},
"description": "Read Tezos's on-chain key-value storage (bigmaps) live from the public TzKT indexer: browse and rank bigmaps by size, read one bigmap's detail and typed key/value schema, and page through its live key-value entries — the actual on-chain data such as token-ledger rows. The storage / data layer for Tezos explorers, indexers and token dashboards. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:03:52.572Z",
"request_id": "b721afcd-520e-40de-a43d-0ef1fb20f4bb"
},
"status": "ok",
"message": "Meta",
"success": true
}