Skip to content
GET /v1/stats

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

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/avaxvalidators-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}