/v1/staking
Osmosis chain staking economics & parameters
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/osmosischain-api/v1/staking" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/osmosischain-api/v1/staking", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/osmosischain-api/v1/staking");
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/osmosischain-api/v1/staking",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "The Osmosis chain staking economics — bonded vs unbonded OSMO, the bonded ratio, and the staking parameters (unbonding period, max validators, minimum commission). No parameters.",
"params": {
"bond_denom": "uosmo",
"max_validators": 70,
"min_commission_rate": 0.05,
"unbonding_time_seconds": 1209600
},
"source": "Osmosis (osmosis-1) LCD",
"bonded_osmo": 201693822.06,
"not_bonded_osmo": 44419512.31,
"bonded_ratio_percent": 81.95
},
"meta": {
"timestamp": "2026-06-15T02:10:33.097Z",
"request_id": "f7676961-49a1-4d62-9758-69875c5441eb"
},
"status": "ok",
"message": "Staking retrieved successfully",
"success": true
}