/v1/staking-pool
Bonded / not-bonded staking pool
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/initia-api/v1/staking-pool" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/initia-api/v1/staking-pool", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/initia-api/v1/staking-pool");
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/initia-api/v1/staking-pool",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"bonded_init": 109757339.105147,
"bonded_uinit": "109757339105147",
"not_bonded_init": 7819103.961389,
"not_bonded_uinit": "7819103961389",
"bonded_tokens_all": [
{
"denom": "move/543b35a39cfadad3da3c23249c474455d15efd2f94f849473226dee8a3c7a9e1",
"amount": "12007583446311"
},
{
"denom": "uinit",
"amount": "109757339105147"
}
],
"not_bonded_tokens_all": [
{
"denom": "move/543b35a39cfadad3da3c23249c474455d15efd2f94f849473226dee8a3c7a9e1",
"amount": "1547504548544"
},
{
"denom": "uinit",
"amount": "7819103961389"
}
]
},
"meta": {
"timestamp": "2026-06-15T11:15:23.271Z",
"request_id": "d9f8c6ef-357d-4274-893f-9f565777be69"
},
"status": "ok",
"message": "Staking pool retrieved successfully",
"success": true
}