/v1/network
Live Celestia chain economy: supply, bonded, staking ratio
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/celestia-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/celestia-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/celestia-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/celestia-api/v1/network",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"chain": "celestia",
"source": "Celestia",
"chain_id": "celestia",
"tip_time": "2026-06-10T14:01:28.104462034Z",
"bonded_tia": 506936382.416317,
"tip_height": 11470462,
"native_token": "TIA",
"total_supply_tia": 1170342566.687279,
"staking_ratio_pct": 43.32
},
"meta": {
"timestamp": "2026-06-10T14:01:35.313Z",
"request_id": "2cd9fd8d-c841-4b7a-9031-0c3259697fc5"
},
"status": "ok",
"message": "Network state retrieved successfully",
"success": true
}