/v1/network
Live chain economics
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/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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}