/v1/meta
Service metadata & live sample
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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
}