/v1/stats
Live staking overview: validators, total AVAX staked, supply, average uptime
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/avaxvalidators-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/avaxvalidators-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/avaxvalidators-api/v1/stats");
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/avaxvalidators-api/v1/stats",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Live Avalanche Primary Network staking overview: the active validator count, how many are connected, total delegations, average uptime, the total AVAX staked on the Primary Network and the current circulating AVAX supply.",
"source": "Avalanche P-Chain",
"connected_count": 637,
"validator_count": 670,
"total_stake_avax": 225170964.3082,
"total_delegations": 27994,
"average_uptime_pct": 95.155,
"current_supply_avax": 472339753.6798
},
"meta": {
"timestamp": "2026-06-14T17:04:35.727Z",
"request_id": "f0c190a0-033e-4f7b-b499-f956c393d74c"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}