/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/nanoreps-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nanoreps-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nanoreps-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/nanoreps-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": {
"online_reps": 75,
"top_weight_nano": 24160266.75
},
"source": "public Nano RPC (rpc.nano.to and peers), keyless",
"service": "nanoreps-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/quorum": "Live confirmation quorum: online stake, quorum delta & percentage, minimum weight.",
"GET /v1/representative": "One representative's weight, share, principal & online status (account; omit for top).",
"GET /v1/representatives": "Online representatives ranked by voting weight, with stake share (limit)."
},
"description": "Read Nano's Open Representative Voting (ORV) consensus live from the public Nano RPC: rank online representatives by delegated voting weight (in NANO) with their share of online stake and principal-representative status; look up a single representative's weight by address; and read the live confirmation quorum (online stake, quorum delta and percentage, minimum weight). The consensus-and-voting layer for Nano wallets, representative dashboards and delegators. Live, short cache only.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T17:04:36.431Z",
"request_id": "c52e83e0-76f8-44e9-be44-e96e583a1bee"
},
"status": "ok",
"message": "Meta",
"success": true
}