Ir al contenido
GET /v1/weeth

weETH wrapped-token supply and its eETH/ETH/USD rate

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/weeth" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/etherfi-api/v1/weeth", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/etherfi-api/v1/weeth");
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/weeth",
    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 wrapped weETH token. weETH is the non-rebasing, value-accruing wrapper of eETH that most of DeFi holds and lends against; eeth_per_weeth (read on-chain via getRate) is how much eETH — and therefore ETH — one weETH is now worth. It rises over time as restaking yield accrues, which is why it is above 1.0. weeth_value_usd prices one weETH at the live ETH price — the figure lending markets use to value weETH collateral. Live, cached ~5m.",
        "source": "Ethereum public JSON-RPC (weETH contract) + Yahoo Finance, keyless",
        "weeth_supply": 1552107.4,
        "eth_price_usd": 1664.43,
        "eeth_per_weeth": 1.09690413,
        "weeth_value_eth": 1.09690413,
        "weeth_value_usd": 1825.72
    },
    "meta": {
        "timestamp": "2026-06-12T19:35:38.966Z",
        "request_id": "73bcf63e-21d6-4bfb-8275-1f384b0c1b26"
    },
    "status": "ok",
    "message": "weETH retrieved successfully",
    "success": true
}