/v1/restaked
Total ETH restaked (eETH supply) and its USD value
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/etherfi-api/v1/restaked" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/etherfi-api/v1/restaked", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/etherfi-api/v1/restaked");
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/etherfi-api/v1/restaked",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "The total ETH restaked through ether.fi, read straight from the chain. total_eth_restaked is the eETH supply — eETH is a rebasing token that tracks ETH one-for-one, so its supply equals the ETH restaked — and total_value_usd prices that at the live ETH price. weeth_supply is how much of it has been wrapped into the value-accruing weETH (the rest is held as eETH). Amounts in ETH and USD. Live, cached ~5m.",
"source": "Ethereum public JSON-RPC (eETH contract) + Yahoo Finance, keyless",
"weeth_supply": 1552107.4,
"eth_price_usd": 1664.43,
"eeth_unwrapped": 294041.7,
"total_value_usd": 3072785948,
"total_eth_restaked": 1846149.1
},
"meta": {
"timestamp": "2026-06-12T19:35:38.704Z",
"request_id": "1e3cb564-941a-4ce6-8a5a-0c04c799e13c"
},
"status": "ok",
"message": "Restaked retrieved successfully",
"success": true
}