Skip to content
GET /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.

Custom headers (optional)
api.oanor.com/xion-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/xion-api/v1/staking-pool" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/xion-api/v1/staking-pool", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/xion-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/xion-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_xion": 59142222.30861,
        "bonded_ratio": 0.967015,
        "bonded_uxion": "59142222308610",
        "not_bonded_xion": 2017353.472019,
        "not_bonded_uxion": "2017353472019"
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:20.155Z",
        "request_id": "3df13416-6b07-43c9-bd7f-70a4fc43a189"
    },
    "status": "ok",
    "message": "Staking pool retrieved successfully",
    "success": true
}