Vai al contenuto
GET /v1/meta

Service metadata & live sample

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/tezosbakers-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/tezosbakers-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezosbakers-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezosbakers-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/tezosbakers-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "sample": {
            "top_baker": "tz1cJTktkAEhxyWZAyQrjcqZJ3BeQYyQMvBt"
        },
        "source": "public TzKT API (api.tzkt.io), keyless",
        "service": "tezosbakers-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/baker": "Full profile of one baker (address=tz1...).",
            "GET /v1/cycle": "The current (or a given) Tezos protocol cycle (optional cycle).",
            "GET /v1/bakers": "Active bakers ranked by staked balance (limit)."
        },
        "description": "Read live Tezos staking and delegation data from the public TzKT indexer: rank active bakers by stake with their delegated balance/stakers/fee, look up any single baker's profile, and read the current protocol cycle (index, snapshot level, total baking power). The staking-and-baker layer for Tezos wallets, delegation dashboards and stakers. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:03:55.025Z",
        "request_id": "cb8ae207-91f0-4f1f-87a0-f19c2b00e11c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}