/v1/network
Live Tezos chain state
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/tezos-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tezos-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tezos-api/v1/network");
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/tezos-api/v1/network",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"chain": "mainnet",
"cycle": 1258,
"level": 13570281,
"source": "Tezos (TzKT)",
"protocol": "PtTALLiNtPec7mE7yY4m3k26J8Qukef3E3ehzhfXgFZKGtDdAXu",
"timestamp": "2026-06-09T20:24:34Z",
"total_frozen_xtz": 329050344.089066,
"total_supply_xtz": 1107384845.842752,
"circulating_supply_xtz": 1087399190.82335
},
"meta": {
"timestamp": "2026-06-09T20:24:40.259Z",
"request_id": "fab53393-ef05-43a5-b6b4-4ceef9ff330d"
},
"status": "ok",
"message": "Network state retrieved successfully",
"success": true
}