Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/tezosbigmaps-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}