Zum Inhalt springen
GET /v1/staking

Kujira chain staking economics (no inflation)

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "The Kujira chain staking economics — bonded vs unbonded KUJI, the bonded ratio, and the staking parameters. Kujira is fee-funded with no inflation. No parameters.",
        "params": {
            "bond_denom": "ukuji",
            "max_validators": 75,
            "min_commission_rate": 0,
            "unbonding_time_seconds": 1209600
        },
        "source": "Kujira (kaiyo-1) LCD",
        "bonded_kuji": 3323255.79,
        "inflation_note": "Kujira has zero token inflation; validators and stakers are rewarded from protocol fees, not new issuance.",
        "not_bonded_kuji": 9313843.16,
        "bonded_ratio_percent": 26.3
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:31.397Z",
        "request_id": "247331f3-1d7a-4f53-a163-681b117e6014"
    },
    "status": "ok",
    "message": "Staking retrieved successfully",
    "success": true
}