/v1/validator
One validator by node id: stake, rank, delegators, uptime
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}