/v1/staking
Staking economics & parameters
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"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
}