/v1/wsteth
wstETH conversion reference
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}