Aller au contenu
GET /v1/wsteth

wstETH conversion reference

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/lido-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "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
}