/v1/reth
rETH staking APR, beacon-chain APR and ETH price
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/reth" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rocketpool-api/v1/reth", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rocketpool-api/v1/reth");
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/reth",
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": {
"note": "rETH accrues Ethereum staking rewards; its ETH value rises over time (no rebase).",
"token": "rETH",
"source": "Rocket Pool",
"reth_apr_pct": 2.0639,
"eth_price_usd": 1620.58,
"reth_collateral_eth": 2719.8389,
"beacon_chain_apr_pct": 2.8376,
"deposit_pool_balance_eth": 7.739141
},
"meta": {
"timestamp": "2026-06-10T22:57:58.673Z",
"request_id": "66745573-c4fa-426b-b796-68c2497a4d3e"
},
"status": "ok",
"message": "rETH data retrieved successfully",
"success": true
}