/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/radixvalidators-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/radixvalidators-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/radixvalidators-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/radixvalidators-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sample": {
"epoch": 317382,
"validators": 287,
"total_stake_xrd": 4758207911.86
},
"source": "official public Radix Gateway API (mainnet.radixdlt.com), keyless",
"service": "radixvalidators-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/network": "Live ledger status: epoch, round, state version, validators, total XRD staked.",
"GET /v1/validator": "One validator by address: stake, rank, share, fee (address; omit for top).",
"GET /v1/validators": "Validators ranked by staked XRD, with name, share, fee, active state (limit)."
},
"description": "Read the Radix Network validator set and ledger status live from the official public Radix Gateway: rank validators by staked XRD with their name, share of network stake, fee and active state; look up a single validator by address; and read the live ledger status (epoch, round, state version, validator count, total XRD staked). The validator-and-staking layer for Radix wallets, staking dashboards and delegators. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:33.803Z",
"request_id": "d015216d-0f3f-4b36-b334-e440b0224ba4"
},
"status": "ok",
"message": "Meta",
"success": true
}