/v1/staking-pool
Bonded / not-bonded staking pool
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}