Vai al contenuto
GET /v1/reth

rETH staking APR, beacon-chain APR and ETH price

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/rocketpool-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}