Zum Inhalt springen
GET /v1/validators

Active validators ranked by stake or apy

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Active Sui validators ranked by stake (or apy). stake_sui is the staking-pool balance; commission and apy are percentages; voting_power is in basis points of total.",
        "sort": "stake",
        "count": 30,
        "epoch": "1158",
        "source": "Sui fullnode JSON-RPC",
        "validators": [
            {
                "name": "Mysten-1",
                "address": "0x4fffd0005522be4bc029724c7f0f6ed7093a6bf3a09b90e62f61dc15181e1a3e",
                "apy_pct": 1.5675840273569563,
                "gas_price": 100,
                "stake_sui": 218815560.51009005,
                "project_url": "https://mystenlabs.com/",
                "voting_power": 303,
                "commission_rate_pct": 2,
                "next_epoch_stake_sui": 218837476.80338868
            },
            {
                "name": "Mysten-2",
                "address": "0xcb7efe4253a0fe58df608d8a2d3c0eea94b4b40a8738c8daae4eb77830c16cd7",
                "apy_pct": 1.5693865481818614,
                "gas_price": 100,
                "stake_sui": 182164788.07928687,
                "project_url": "https://mystenlabs.com/",
                "voting_power": 253,
                "commission_rate_pct": 2,
                "next_epoch_stake_sui": 182186191.07928687
            },
            {
                "name": "Coinbase",
                "address": "0x0350925241ae8d4083fe4b1104e14dd28d2ffeced9d7575551c50c41b99995fb",
                "apy_pct": 1.4373355835548796,
                "gas_price": 99,
                "stake_sui": 158215598.1884085,
                "project_url": "https://www.coinbase.com/staking",
                "voting_power": 219,
                "commission_rate_pct": 10,
                "next_epoch_stake_sui": 158215600.188644
            },
            {
                "name": "Galaxy Digital",
                "address": "0x60ce054d9dc5771fcbeb9a52a1881a97d3092efc8eb29befc3e60281dbe80ca0",
                "apy_pct": 1.5188582654988716,
                "gas_price": 100,
                "stake_sui": 151042856.58678195,
                "project_url": "https://www.galaxy.com",
                "voting_power": 209,
                "commission_rate_pct": 5,
                "next_epoch_stake_sui": 151043106.58678195
            },
            {
                "name": "Aftermath",
                "address": "0xd30018ec3f5ff1a3c75656abf927a87d7f0529e6dc89c7ddd1bd27ecb05e3db2",
                "apy_pct": 1.536072604042687,
                "gas_price": 1,
                "stake_sui": 142559045.98212382,
                "project_url": "https://aftermath.finance",
                "voting_power": 198,
                "commission_rate_pct": 4,
                "next_epoch_stake_sui": 142559044.98212382
            },
            {
                "name": "DSRV",
                "address": "0x6f4e73ee97bfae95e054d31dff1361a839aaadf2cfdb873ad2b07d479507905a",
                "apy_pct": 1.5363487307155583,
                "gas_
…