Ir al contenido
GET /v1/wsteth

wstETH conversion reference

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/lido-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/lido-api/v1/wsteth" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lido-api/v1/wsteth", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lido-api/v1/wsteth");
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/lido-api/v1/wsteth",
    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 wstETH conversion reference. wstETH is the non-rebasing wrapper of stETH whose value rises as rewards accrue: one wstETH currently equals steth_per_wsteth stETH (and one stETH equals wsteth_per_steth wstETH). steth_wrapped is how much stETH is held in wstETH form, and pct_steth_wrapped its share of all stETH. Live, cached ~90s.",
        "source": "Ethereum wstETH contract via public RPC (ethereum-rpc.publicnode.com), keyless",
        "steth_wrapped": 4378882.2,
        "wsteth_supply": 3540322.1,
        "steth_per_wsteth": 1.23686,
        "wsteth_per_steth": 0.808499,
        "pct_steth_wrapped": 49.1
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:40.916Z",
        "request_id": "d6d3452d-3f62-45fd-92c4-2196d550f059"
    },
    "status": "ok",
    "message": "wstETH data retrieved successfully",
    "success": true
}