/v1/network
Live ledger status: epoch, round, state version, validators, total XRD staked
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/radixvalidators-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/radixvalidators-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/radixvalidators-api/v1/network");
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/radixvalidators-api/v1/network",
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": "Live Radix ledger status: the current epoch and round, the ledger state version, plus the validator count and total XRD staked across the network.",
"epoch": 317382,
"round": 29,
"source": "Radix Gateway",
"network": "mainnet",
"state_version": 522453547,
"total_stake_xrd": 4758207911.86,
"validator_count": 287,
"ledger_timestamp": "2026-06-14T17:04:29.025Z",
"active_validators": 100
},
"meta": {
"timestamp": "2026-06-14T17:04:33.712Z",
"request_id": "d518f14c-f2e4-4961-a2ec-d0b3d4193063"
},
"status": "ok",
"message": "Network retrieved successfully",
"success": true
}