Μετάβαση στο περιεχόμενο
GET /v1/overview

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

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/lido-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

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