Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/nanoreps-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-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_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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
}