/v1/staking
Kujira chain staking economics (no inflation)
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/kujira-api/v1/staking" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kujira-api/v1/staking", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kujira-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/kujira-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 Kujira chain staking economics — bonded vs unbonded KUJI, the bonded ratio, and the staking parameters. Kujira is fee-funded with no inflation. No parameters.",
"params": {
"bond_denom": "ukuji",
"max_validators": 75,
"min_commission_rate": 0,
"unbonding_time_seconds": 1209600
},
"source": "Kujira (kaiyo-1) LCD",
"bonded_kuji": 3323255.79,
"inflation_note": "Kujira has zero token inflation; validators and stakers are rewarded from protocol fees, not new issuance.",
"not_bonded_kuji": 9313843.16,
"bonded_ratio_percent": 26.3
},
"meta": {
"timestamp": "2026-06-15T02:10:31.397Z",
"request_id": "247331f3-1d7a-4f53-a163-681b117e6014"
},
"status": "ok",
"message": "Staking retrieved successfully",
"success": true
}