Zum Inhalt springen
GET /v1/staking

Staking pool, bonded ratio & params

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/coreum-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "chain": "coreum-mainnet-1",
        "denom": "CORE",
        "params": {
            "bond_denom": "ucore",
            "max_validators": 64,
            "unbonding_time": "604800s",
            "min_commission_rate": "0.050000000000000000"
        },
        "bonded_ratio": 0.991794,
        "bonded_tokens": 2511782237.521431,
        "not_bonded_tokens": 20782534.343505
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:18.924Z",
        "request_id": "15aeb2a5-9ddd-49eb-9216-79db01ad567a"
    },
    "status": "ok",
    "message": "Staking retrieved successfully",
    "success": true
}