Zum Inhalt springen
GET /v1/staking

Staking economics & parameters

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "The Neutron staking economics — bonded vs unbonded NTRN, the bonded ratio, and the chain's staking parameters (unbonding period, max validators, minimum commission). No parameters.",
        "params": {
            "bond_denom": "untrn",
            "max_validators": 18,
            "min_commission_rate": 0,
            "unbonding_time_seconds": 1728000
        },
        "source": "Neutron (neutron-1) LCD",
        "bonded_ntrn": 158806962.56,
        "not_bonded_ntrn": 37175846.35,
        "bonded_ratio_percent": 81.03
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:39.606Z",
        "request_id": "969790c7-dbae-457a-85c1-88714f96815a"
    },
    "status": "ok",
    "message": "Staking retrieved successfully",
    "success": true
}