Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/avaxvalidators-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}