/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/sei-api/v1/staking" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sei-api/v1/staking", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sei-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/sei-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 Sei staking economics — bonded vs unbonded SEI, the bonded ratio, and the chain's staking parameters (unbonding period, max validators, minimum commission). No parameters.",
"params": {
"bond_denom": "usei",
"max_validators": 40,
"min_commission_rate": 0.05,
"unbonding_time_seconds": 1814400
},
"source": "Sei Network (pacific-1) LCD",
"bonded_sei": 3905048314.1,
"not_bonded_sei": 586226690.45,
"bonded_ratio_percent": 86.95
},
"meta": {
"timestamp": "2026-06-15T02:10:41.108Z",
"request_id": "2ee90d8c-0424-43b2-9a8e-c405e6701753"
},
"status": "ok",
"message": "Staking retrieved successfully",
"success": true
}