Skip to content
GET /v1/validators

Validator set ranked by stake

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/near-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 25,
        "source": "NEAR",
        "validators": [
            {
                "account_id": "bisontrails2.poolv1.near",
                "stake_near": 30373378.213582,
                "uptime_pct": 100,
                "blocks_expected": 920,
                "blocks_produced": 920
            },
            {
                "account_id": "astro-stakers.poolv1.near",
                "stake_near": 28949888.903461,
                "uptime_pct": 100,
                "blocks_expected": 935,
                "blocks_produced": 935
            },
            {
                "account_id": "figment.poolv1.near",
                "stake_near": 28708578.688383,
                "uptime_pct": 100,
                "blocks_expected": 876,
                "blocks_produced": 876
            },
            {
                "account_id": "binancenode1.poolv1.near",
                "stake_near": 23810404.769558,
                "uptime_pct": 100,
                "blocks_expected": 732,
                "blocks_produced": 732
            },
            {
                "account_id": "bitwise_1.poolv1.near",
                "stake_near": 22342878.769397,
                "uptime_pct": 100,
                "blocks_expected": 674,
                "blocks_produced": 674
            },
            {
                "account_id": "zavodil.poolv1.near",
                "stake_near": 19627718.552601,
                "uptime_pct": 100,
                "blocks_expected": 582,
                "blocks_produced": 582
            },
            {
                "account_id": "ledgerbyfigment.poolv1.near",
                "stake_near": 17348663.659008,
                "uptime_pct": 100,
                "blocks_expected": 566,
                "blocks_produced": 566
            },
            {
                "account_id": "staked.poolv1.near",
                "stake_near": 14607154.562515,
                "uptime_pct": 100,
                "blocks_expected": 472,
                "blocks_produced": 472
            },
            {
                "account_id": "kiln-1.poolv1.near",
                "stake_near": 12733066.097968,
                "uptime_pct": 100,
                "blocks_expected": 392,
                "blocks_produced": 392
            },
            {
                "account_id": "liver.pool.near",
                "stake_near": 12147637.649785,
                "uptime_pct": 100,
                "blocks_expected": 357,
                "blocks_produced": 357
            },
            {
                "account_id": "svrn-ai.poolv1.near",
                "stake_near": 11833064.248173,
                "uptime_pct": 100,
                "blocks_expected": 359,
                "blocks_produced": 359
            },
            {
                "account_id": "p2p-org.poolv1.near",
                "stake_near": 11760265.125082,
                "uptime_pct": 100,
                "blocks_expected": 368,
                "blocks_produce
…