Naar de inhoud
GET /v1/reth

rETH staking APR, beacon-chain APR and ETH price

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/rocketpool-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}