/v1/network
Live chain economics
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/cosmos-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cosmos-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cosmos-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/cosmos-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": "cosmoshub",
"source": "Cosmos Hub",
"bonded_atom": 320772508.982067,
"inflation_pct": 10,
"not_bonded_atom": 15133528.65985,
"bonded_ratio_pct": 62.4986,
"total_supply_atom": 513247352.326619,
"community_pool_atom": 10427828.337909,
"bonded_validator_count": 200
},
"meta": {
"timestamp": "2026-06-10T05:17:38.845Z",
"request_id": "2f26bfb9-dca0-4430-a8e1-abafb35b7325"
},
"status": "ok",
"message": "Network state retrieved successfully",
"success": true
}