/v1/staking-pool
Bonded / not-bonded staking pool
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/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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}