/v1/nodes
Node-operator counts, timezones and commission
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}