Aller au contenu
GET /v1/overview

TVL, wstETH supply, current rate, net 7d APR

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/overview" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lido-api/v1/overview", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lido-api/v1/overview");
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/overview",
    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": "Lido at a glance. tvl_eth is the ETH staked through Lido — equal to the stETH supply, since Lido mints one stETH per ETH staked. steth_per_wsteth is the current on-chain exchange rate (one wstETH is worth this many stETH). net_apr_7d_pct is the net-of-fees staking yield over the last 7 days, annualised from the change in that rate. Amounts are in ETH; a single token unit can be large because Lido stakes millions of ETH. Live from the stETH/wstETH contracts, cached ~90s. TVL in USD is not given (no price is fabricated) — multiply tvl_eth by your own ETH price.",
        "source": "Ethereum stETH/wstETH contracts via public RPC (ethereum-rpc.publicnode.com), keyless",
        "tvl_eth": 8917635,
        "steth_supply": 8917635,
        "wsteth_supply": 3540322.1,
        "net_apr_7d_pct": 2.54,
        "steth_per_wsteth": 1.23686
    },
    "meta": {
        "timestamp": "2026-06-13T04:42:40.771Z",
        "request_id": "778a7008-ed9d-4f68-96fd-d6f07c2c5e51"
    },
    "status": "ok",
    "message": "Overview retrieved successfully",
    "success": true
}