Zum Inhalt springen
GET /v1/network

Live ledger status: epoch, round, state version, validators, total XRD staked

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/radixvalidators-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "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
}