/v1/network
Live Tezos chain state
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}