Zum Inhalt springen
GET /v1/reth

rETH staking APR, beacon-chain APR and ETH price

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/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_..."}
)

Beispiel-Response

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

{
    "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
}