Zum Inhalt springen
GET /v1/meta

Service metadata & live sample

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

Beispiel-Response

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

{
    "data": {
        "sample": {
            "epoch": "1158",
            "validators": 129
        },
        "source": "public Sui fullnode JSON-RPC (suix_getLatestSuiSystemState / suix_getValidatorsApy), keyless",
        "service": "suivalidators-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/system": "Current epoch system state: total stake, validators, gas price, storage fund.",
            "GET /v1/validator": "Full profile of one validator (address=0x...).",
            "GET /v1/validators": "Active validators ranked by stake or apy (limit, sort=stake|apy)."
        },
        "description": "Read the live Sui validator set and staking economics from a public Sui fullnode JSON-RPC: active validators ranked by stake with commission/APY/voting-power, any single validator's profile, and the current epoch's system state. The staking-and-validator layer for Sui wallets, staking dashboards and delegators. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T08:03:54.621Z",
        "request_id": "c4b22ca0-a47b-44e5-be72-f79dafbe85f2"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}