Vai al contenuto
GET /v1/validators

Validators ranked by staked XRD, with name, share, fee, active state

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/radixvalidators-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/radixvalidators-api/v1/validators" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/radixvalidators-api/v1/validators", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/radixvalidators-api/v1/validators");
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/validators",
    headers={"x-oanor-key": "oanor_test_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "Radix Network validators ranked by staked XRD (own plus delegated). stake_pct is the validator's share of total network stake; fee_pct is the commission it charges; active marks validators in the current epoch's active set.",
        "count": 30,
        "source": "Radix Gateway",
        "validators": [
            {
                "name": "REDDICKS NODE",
                "rank": 1,
                "active": true,
                "address": "validator_rdx1swywqhv3ed5w6dldfs2vamtrsyrdsfd6l9cqen5xqe54597gyckpns",
                "fee_pct": 100,
                "stake_pct": 4.8352,
                "stake_xrd": 230066823.97542426
            },
            {
                "name": "SRWA",
                "rank": 2,
                "active": true,
                "address": "validator_rdx1sdvntpsfvlyx2hapn5zfr6z7etfwgqljsqdqh23876r33fpd8cvu5j",
                "fee_pct": 0,
                "stake_pct": 4.7511,
                "stake_xrd": 226068446.55942872
            },
            {
                "name": "Astrolescent",
                "rank": 3,
                "active": true,
                "address": "validator_rdx1sw54cuswwzlcgw2zh3ax93pddnsm78qwwhmtvz650q84yyckzkh7nk",
                "fee_pct": 15,
                "stake_pct": 4.2424,
                "stake_xrd": 201861115.968999
            },
            {
                "name": "WEFT",
                "rank": 4,
                "active": true,
                "address": "validator_rdx1sd6n65sx0thvfzfp6x0jp4qgwxtudpx575wpwqespdlva2wldul9xk",
                "fee_pct": 1,
                "stake_pct": 4.1994,
                "stake_xrd": 199816264.1269509
            },
            {
                "name": "Jazzer9F 🌍 NL",
                "rank": 5,
                "active": true,
                "address": "validator_rdx1s0lz5v68gtqwswu7lrx9yrjte4ts0l2saphmplsz68nsv2aux0xvfq",
                "fee_pct": 1,
                "stake_pct": 3.9475,
                "stake_xrd": 187828996.22991204
            },
            {
                "name": "🐱 Ocinode",
                "rank": 6,
                "active": true,
                "address": "validator_rdx1s0quzpxcnvh2h7ua2rq6ds0nka3z05kfpz3eventwpamve22uxjdxj",
                "fee_pct": 0,
                "stake_pct": 3.7483,
                "stake_xrd": 178353549.79677477
            },
            {
                "name": "DefiPlaza Investment Node",
                "rank": 7,
                "active": true,
                "address": "validator_rdx1s08nr8ukas7yklpf7q0dg9s3resvmhjau9r5ye3vvkrhpycayjrfrw",
                "fee_pct": 100,
                "stake_pct": 3.4322,
                "stake_xrd": 163313378.76428333
            },
            {
                "name": "⏩ Avaunt Staking ⏩ ShardSpace.app",
                "rank": 8,
                "active": true,
                "address": "validator_rdx1sd9uhhpml8vjz8uz0tut9jzv2mx326jdusfxjpccccj2904s8ndhqq",
                "fee_pct": 2,
      
…