Zum Inhalt springen
GET /v1/nodes

Node-operator counts, timezones and commission

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "source": "Rocket Pool",
        "timezones": 105,
        "staking_minipools": 14541,
        "megapool_validators": 4449,
        "node_commission_pct": 5,
        "node_operators_total": 4140,
        "node_operators_active": 1495,
        "staking_prelaunch_nodes": 1446
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:58.924Z",
        "request_id": "2b610b56-68ac-44e0-a44e-cdf31f542bc8"
    },
    "status": "ok",
    "message": "Node data retrieved successfully",
    "success": true
}