/v1/staking
Staking economics & parameters
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/juno-api/v1/staking" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/juno-api/v1/staking", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/juno-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/juno-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 Juno staking economics — bonded vs unbonded JUNO, the bonded ratio, and the chain's staking parameters (unbonding period, max validators, minimum commission). No parameters.",
"params": {
"bond_denom": "ujuno",
"max_validators": 25,
"min_commission_rate": 0.05,
"unbonding_time_seconds": 2419200
},
"source": "Juno Network (juno-1) LCD",
"bonded_juno": 35295974.9,
"not_bonded_juno": 18489161.71,
"bonded_ratio_percent": 65.62
},
"meta": {
"timestamp": "2026-06-15T02:10:35.966Z",
"request_id": "4eee90a3-205d-4750-ac5c-42fc6bc793c9"
},
"status": "ok",
"message": "Staking retrieved successfully",
"success": true
}