Ir al contenido
GET /v1/restaked

Total ETH restaked (eETH supply) and its USD value

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/etherfi-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/etherfi-api/v1/restaked" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/etherfi-api/v1/restaked", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/etherfi-api/v1/restaked");
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/etherfi-api/v1/restaked",
    headers={"x-oanor-key": "oanor_test_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "The total ETH restaked through ether.fi, read straight from the chain. total_eth_restaked is the eETH supply — eETH is a rebasing token that tracks ETH one-for-one, so its supply equals the ETH restaked — and total_value_usd prices that at the live ETH price. weeth_supply is how much of it has been wrapped into the value-accruing weETH (the rest is held as eETH). Amounts in ETH and USD. Live, cached ~5m.",
        "source": "Ethereum public JSON-RPC (eETH contract) + Yahoo Finance, keyless",
        "weeth_supply": 1552107.4,
        "eth_price_usd": 1664.43,
        "eeth_unwrapped": 294041.7,
        "total_value_usd": 3072785948,
        "total_eth_restaked": 1846149.1
    },
    "meta": {
        "timestamp": "2026-06-12T19:35:38.704Z",
        "request_id": "1e3cb564-941a-4ce6-8a5a-0c04c799e13c"
    },
    "status": "ok",
    "message": "Restaked retrieved successfully",
    "success": true
}