Zum Inhalt springen
GET /v1/meta

Service metadata

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}