Zum Inhalt springen
GET /v1/quorum

Live confirmation quorum: online stake, quorum delta & percentage, minimum weight

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Live Nano confirmation quorum: the total online voting stake, the trended and peer stake, the quorum delta (weight needed to confirm), the quorum percentage and the minimum weight a representative needs to count. This is the health of ORV consensus.",
        "source": "Nano RPC",
        "quorum_delta_nano": 58413476.67,
        "peers_stake_total_nano": 87008339.23,
        "online_stake_total_nano": 87184293.54,
        "trended_stake_total_nano": 86957655.44,
        "online_weight_minimum_nano": 60000000,
        "online_weight_quorum_percent": 67
    },
    "meta": {
        "timestamp": "2026-06-14T17:04:36.347Z",
        "request_id": "3008a518-1069-4334-82c6-702a16a01351"
    },
    "status": "ok",
    "message": "Quorum retrieved successfully",
    "success": true
}