/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/aptosvalidators-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aptosvalidators-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aptosvalidators-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/aptosvalidators-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"sample": {
"active_validators": 97,
"top_voting_power_pct": 3.3897
},
"source": "official public Aptos fullnode REST API (fullnode.mainnet.aptoslabs.com), keyless",
"service": "aptosvalidators-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pool": "One stake pool's stake breakdown, operator and lockup (address=0x...; omit for top).",
"GET /v1/config": "Network staking config: min/max stake, lockup, reward rate, epoch.",
"GET /v1/validators": "Active validators ranked by voting power, with network share (limit)."
},
"description": "Read the Aptos proof-of-stake validator set and staking economics live from the official public fullnode: rank active validators by voting power (with each one's network share, operator and pool), read the network staking config (min/max stake, lockup, reward rate, current epoch), and inspect any single stake pool's active/inactive/pending stake. The staking-and-validator layer for Aptos wallets, staking dashboards and analytics. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:03:49.259Z",
"request_id": "33df2745-9834-434e-9934-65e43e22057b"
},
"status": "ok",
"message": "Meta",
"success": true
}