/v1/network
Protocol staking state — ETH staked, minipools, deposit pool, rETH collateral
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/rocketpool-api/v1/network" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rocketpool-api/v1/network", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rocketpool-api/v1/network");
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/network",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"source": "Rocket Pool",
"protocol": "Rocket Pool",
"rp_eth_staked": 607680,
"staking_minipools": 14541,
"ethereum_validators": 889338,
"node_commission_pct": 5,
"reth_collateral_eth": 2719.8389,
"deposit_pool_balance_eth": 7.739141,
"ethereum_total_staked_eth": 32771893,
"staking_megapool_validators": 4449
},
"meta": {
"timestamp": "2026-06-10T22:57:58.531Z",
"request_id": "6775a0fd-b833-4424-b2b0-c0e067ac1edd"
},
"status": "ok",
"message": "Network state retrieved successfully",
"success": true
}