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

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

Get an API key

Code snippets

curl "https://api.oanor.com/archway-api/v1/staking" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/archway-api/v1/staking", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/archway-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/archway-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": "archway-1",
        "denom": "ARCH",
        "params": {
            "bond_denom": "aarch",
            "max_validators": 40,
            "unbonding_time": "1814400s",
            "min_commission_rate": "0.000000000000000000"
        },
        "bonded_ratio": 0.608398,
        "bonded_tokens": 307690104.5900728,
        "not_bonded_tokens": 198048389.25080934
    },
    "meta": {
        "timestamp": "2026-06-15T02:09:53.164Z",
        "request_id": "6d595b91-c82e-4f33-8e0c-9aa273f26eaa"
    },
    "status": "ok",
    "message": "Staking retrieved successfully",
    "success": true
}