Zum Inhalt springen
GET /v1/stats

Live staking overview: validators, total AVAX staked, supply, average uptime

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/avaxvalidators-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}