/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.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/sentinel-api/v1/staking" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/sentinel-api/v1/staking", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/sentinel-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/sentinel-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": "sentinelhub-2",
"denom": "DVPN",
"params": {
"bond_denom": "udvpn",
"max_validators": 64,
"unbonding_time": "1209600s",
"min_commission_rate": "0.050000000000000000"
},
"bonded_ratio": 0.945227,
"bonded_tokens": 19885373219.996075,
"not_bonded_tokens": 1152298194.944483
},
"meta": {
"timestamp": "2026-06-15T02:10:20.714Z",
"request_id": "5516087a-b757-44e5-9c8d-4545a8ec7262"
},
"status": "ok",
"message": "Staking retrieved successfully",
"success": true
}