/v1/staking
Regen chain staking economics & parameters
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/regen-api/v1/staking" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/regen-api/v1/staking", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/regen-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/regen-api/v1/staking",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"note": "The Regen chain staking economics — bonded vs unbonded REGEN, the bonded ratio, and the staking parameters (unbonding period, max validators, minimum commission). No parameters.",
"params": {
"bond_denom": "uregen",
"max_validators": 21,
"min_commission_rate": 0,
"unbonding_time_seconds": 1814400
},
"source": "Regen Network (regen-1) LCD",
"bonded_regen": 94013038.55,
"not_bonded_regen": 28608617.33,
"bonded_ratio_percent": 76.67
},
"meta": {
"timestamp": "2026-06-15T02:10:22.599Z",
"request_id": "fe4e4303-c6e0-4d02-91ab-636fd7b82737"
},
"status": "ok",
"message": "Staking retrieved successfully",
"success": true
}