/v1/wsteth
wstETH conversion reference
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}