Skip to content
GET /v1/staking

Staking economics & parameters

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

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "note": "The Persistence staking economics — bonded vs unbonded XPRT, the bonded ratio, and the chain's staking parameters (unbonding period, max validators, minimum commission). No parameters.",
        "params": {
            "bond_denom": "uxprt",
            "max_validators": 100,
            "min_commission_rate": 0.05,
            "unbonding_time_seconds": 1814400
        },
        "source": "Persistence (core-1) LCD",
        "bonded_xprt": 139288427.12,
        "not_bonded_xprt": 8984812.91,
        "bonded_ratio_percent": 93.94
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:23.857Z",
        "request_id": "7c5261a9-a49d-4a31-8724-8fc4386da4d5"
    },
    "status": "ok",
    "message": "Staking retrieved successfully",
    "success": true
}