/v1/staking
Staking economics — stake, supply, inflation, epoch
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/solanavalidators-api/v1/staking" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/solanavalidators-api/v1/staking", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/solanavalidators-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/solanavalidators-api/v1/staking",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"epoch": 985,
"source": "Solana RPC",
"validator_count": 722,
"delinquent_count": 49,
"total_supply_sol": 628174337.92,
"pct_supply_staked": 67.5,
"epoch_progress_pct": 84.13,
"inflation_rate_pct": 3.802,
"circulating_supply_sol": 579706711.45,
"total_active_stake_sol": 424047658.84,
"validator_inflation_pct": 3.802,
"foundation_inflation_pct": 0
},
"meta": {
"timestamp": "2026-06-12T01:41:27.603Z",
"request_id": "d3a91612-8100-4f22-8ad3-971318c2f70f"
},
"status": "ok",
"message": "Staking retrieved successfully",
"success": true
}