/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/avaxvalidators-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/avaxvalidators-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/avaxvalidators-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sample": {
"validators": 670,
"total_stake_avax": 225170964.3082
},
"source": "official public Avalanche API (api.avax.network /ext/bc/P), keyless",
"service": "avaxvalidators-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/stats": "Live staking overview: validators, total AVAX staked, supply, average uptime.",
"GET /v1/validator": "One validator by node id: stake, rank, delegators, uptime (nodeID; omit for top).",
"GET /v1/validators": "Validators ranked by stake weight, with uptime, delegators, fee, reward (limit)."
},
"description": "Read the Avalanche Primary Network validator set live from the official public Avalanche API: rank validators by stake weight with their node id, total stake (own plus delegated), uptime, delegation fee and pending reward; look up a single validator by node id; and read a live staking overview (validator count, total AVAX staked, current supply, average uptime). The validator-and-staking layer for Avalanche wallets, staking dashboards and delegators. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:35.832Z",
"request_id": "34760e08-c29c-4503-ac53-0e651d2383b2"
},
"status": "ok",
"message": "Meta",
"success": true
}