Skip to content
GET /v1/staking

Staking pool, bonded ratio & params

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/sommelier-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/sommelier-api/v1/staking" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sommelier-api/v1/staking", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sommelier-api/v1/staking");
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/sommelier-api/v1/staking",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "chain": "sommelier-3",
        "denom": "SOMM",
        "params": {
            "bond_denom": "usomm",
            "max_validators": 50,
            "unbonding_time": "2419200s",
            "min_commission_rate": "0.000000000000000000"
        },
        "bonded_ratio": 0.511632,
        "bonded_tokens": 76305983.743891,
        "not_bonded_tokens": 72836319.269314
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:10.407Z",
        "request_id": "4a10bca0-960e-4276-9d20-c6a23f82ee6d"
    },
    "status": "ok",
    "message": "Staking retrieved successfully",
    "success": true
}