/v1/network
Live chain economics
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}