/v1/staking-pool
Bonded / not-bonded staking pool
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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}