/v1/staking
Kujira chain staking economics (no inflation)
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}