Naar de inhoud
GET /v1/meta

Spec

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/solanavalidators-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Stake is converted from lamports to SOL (1 SOL = 1,000,000,000 lamports). The validator set only changes between epochs, so getVoteAccounts is cached briefly. Delinquent validators are those currently failing to vote.",
        "source": "Public Solana JSON-RPC (api.mainnet-beta.solana.com, live)",
        "service": "solanavalidators-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/staking": "Staking economics — active stake, supply, % staked, inflation, epoch.",
            "GET /v1/validators": "Validators ranked by activated stake with share & commission (limit=50).",
            "GET /v1/centralization": "Stake centralisation — Nakamoto coefficient, top-10/20 share, HHI."
        },
        "description": "Who secures Solana and how decentralised it is, from a public Solana RPC node. validators ranks validators by activated stake (stake, share, commission, delinquency); staking returns the staking economics (total active stake, SOL supply, % of supply staked, inflation rate, epoch); centralization computes the Nakamoto coefficient (fewest validators controlling >1/3 of stake — the amount that could halt the chain), the top-10/top-20 stake share and the Herfindahl index. Live, no key, nothing stored. The Solana validator / staking / decentralisation data-cut, distinct from the Solana on-chain account/transaction API and the other staking and exchange APIs.",
        "upstream_status": "ok",
        "validator_count": 722,
        "nakamoto_coefficient": 19
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:27.805Z",
        "request_id": "2bbd9d2a-0850-44fd-b71c-1d0e9ad786b3"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}