Skip to content
GET /v1/validator

One validator by node id: stake, rank, delegators, 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/validator" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/avaxvalidators-api/v1/validator", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/avaxvalidators-api/v1/validator");
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/validator",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "A single Avalanche validator by node id: its total stake (in AVAX), rank, share of staked AVAX, delegators, delegation fee, uptime and pending reward. Omit nodeID for the top validator.",
        "rank": 1,
        "source": "Avalanche P-Chain",
        "node_id": "NodeID-7pDhCWQKNrpCjTL6tB7uNvBUnBQ5amgob",
        "end_time": 1782792000,
        "connected": true,
        "start_time": 1779143291,
        "uptime_pct": 99.9811,
        "weight_pct": 1.6558,
        "delegated_avax": 0,
        "delegator_count": 0,
        "stake_weight_avax": 2999999,
        "delegation_fee_pct": 2,
        "potential_reward_avax": 18738.2352
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:35.506Z",
        "request_id": "62ed8abe-0bdd-4953-a070-83ee6e9ac2fb"
    },
    "status": "ok",
    "message": "Validator retrieved successfully",
    "success": true
}