Current validators ranked by stake
API · /nearvalidators-api
NEAR Validators & Staking API
Read NEAR's validator set and network economics live from a public NEAR RPC endpoint — no key. NEAR is sharded proof-of-stake: validators stake NEAR, produce blocks and chunks across shards, and earn rewards. The NEAR on-chain reader resolves a single account's state and the view reader runs contract view methods, but neither surfaces the validator set, the next-epoch staking proposals, or the live network economics. This opens that. List the current epoch's validators ranked by stake — each with its account id, stake in NEAR, the blocks and chunks it produced versus expected (its uptime) and slash status; read the next-epoch staking proposals (the validators entering, leaving or re-staking for the upcoming epoch); and read the live network economics — the gas price (in yoctoNEAR), the epoch length in blocks, the protocol version and the block/chunk producer kickout thresholds. The validator / staking / network layer for NEAR explorers, staking dashboards, delegators and analytics. Distinct from the NEAR on-chain account reader and the NEAR view-function reader. Live from RPC; short cache only.
API health
healthy- Uptime
- 100.00%
- Server probes · 24h
- Avg latency
- 966 ms
- Server probes · 24h
- Subscribers
- 4,218
- active
- Total calls
- 12
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 8,200 calls / month
- 3 requests / second
- Hard cap (429 above quota, no overage)
- 8.2k calls/month
- 3 req/sec
- All endpoints
- No credit card
Starter
€8.30 /month
- 150,000 calls / month
- 10 requests / second
- Hard cap (429 above quota, no overage)
- 150k calls/month
- 10 req/sec
- Email support
Pro
€29.00 /month
- 820,000 calls / month
- 25 requests / second
- Hard cap (429 above quota, no overage)
- 820k calls/month
- 25 req/sec
- Priority support
Scale
€83.00 /month
- 5,150,000 calls / month
- 60 requests / second
- Hard cap (429 above quota, no overage)
- 5.15M calls/month
- 60 req/sec
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
NEAR View API
Execute read-only contract view methods on NEAR, live, via public NEAR RPC — no key. This is NEAR's equivalent of an eth_call: run any contract's view method against the current chain state and get its return value, with no transaction, gas or signer. Call a method by name with JSON arguments on any contract, or use the convenience endpoints for a NEP-141 fungible token's metadata and total supply and for any account's token balance. Read whatever a NEAR contract exposes — token data, AMM pool reserves, registry lookups, DAO and staking state — straight from the source, with the byte result decoded from JSON for you. The on-chain read layer every NEAR wallet, dashboard, trading bot and indexer needs. Live from the chain; short cache only.
api.oanor.com/nearview-api
NEAR Protocol API
Live on-chain data from the NEAR Protocol (NEAR), a sharded proof-of-stake Layer 1 known for its human-readable named accounts and its access-key permission model, via a public NEAR RPC endpoint. On NEAR an account is a name like "aurora" or "example.near", not a hash, and each account authorises actions through access keys that are either full-access or function-call-scoped. Resolve an account's NEAR balance, the portion locked for staking, its storage usage and whether it holds a deployed contract. Read the account's access keys with each key's permission — full access, or a function-call key with its allowance, the contract it may call and the methods it is limited to. Get the current validator set ranked by stake, with each validator's blocks produced versus expected. Read the live chain state — the chain id, protocol version, latest block height, gas price, validator count and total stake. Live, no key, nothing stored. Distinct from the XRP Ledger, Stellar, TRON, Aptos, Algorand, Tezos, Cardano, Hedera, Kaspa, Cosmos, Sui, Solana and EVM on-chain APIs and from price feeds — this is NEAR's named-account state, access keys, staking validators and chain economics. Perfect for wallets, explorers and analytics apps.
api.oanor.com/near-api
Aurora Chain API
Live on-chain data for Aurora — an EVM running on the NEAR Protocol — via its public Blockscout explorer (no wallet, no key). The stats endpoint returns chain-wide totals (blocks, transactions, addresses, average block time, gas used); gas gives the current gas-price oracle (slow/average/fast). Blocks lists the latest blocks, and a single block resolves by height or by hash with its transaction count, gas, miner and timestamp. The address endpoint returns any account's ETH balance, nonce, contract flag and token holdings; transaction resolves a tx by hash with its from/to, value in ETH, fee, status and block. The token endpoint returns an ERC-20 token's metadata (name, symbol, decimals, total supply, holders) by contract address, and search runs a universal lookup across addresses, tokens, blocks and transactions. Gas, balances, values and fees are denominated in ETH, the native coin. Real on-chain data straight from the explorer, refreshed every call — no key. 9 endpoints. For multi-chain coverage combine with the other oanor chain APIs (Ethereum, Base, Arbitrum and more).
api.oanor.com/aurora-api
Warden Protocol Network API
Live on-chain data for Warden Protocol (chain-id warden_8765-1), an EVM-compatible Cosmos-SDK Layer 1 focused on intelligent on-chain applications and chain abstraction, with the WARD token. Read the current chain status — latest block height, block time and chain id — list the active validator set with each validator moniker, staked WARD, commission and jailed status, inspect the staking pool with bonded and not-bonded amounts and the bonded ratio, read the total WARD supply, and browse the latest on-chain governance proposals with their status and voting windows. WARD uses 18 decimals (EVM-style); all amounts are returned both in base units (award) and as whole WARD. Distinct from other Cosmos-chain APIs on the marketplace: this surfaces the Warden Protocol mainnet specifically.
api.oanor.com/warden-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for NEAR Validators & Staking API?
What's the rate limit for NEAR Validators & Staking API?
How much does NEAR Validators & Staking API cost?
Can I cancel my subscription anytime?
Is NEAR Validators & Staking API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/nearvalidators-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/nearvalidators-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/nearvalidators-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/nearvalidators-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.