/v1/weeth
weETH wrapped-token supply and its eETH/ETH/USD rate
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/weeth" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/etherfi-api/v1/weeth", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/etherfi-api/v1/weeth");
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/weeth",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "The wrapped weETH token. weETH is the non-rebasing, value-accruing wrapper of eETH that most of DeFi holds and lends against; eeth_per_weeth (read on-chain via getRate) is how much eETH — and therefore ETH — one weETH is now worth. It rises over time as restaking yield accrues, which is why it is above 1.0. weeth_value_usd prices one weETH at the live ETH price — the figure lending markets use to value weETH collateral. Live, cached ~5m.",
"source": "Ethereum public JSON-RPC (weETH contract) + Yahoo Finance, keyless",
"weeth_supply": 1552107.4,
"eth_price_usd": 1664.43,
"eeth_per_weeth": 1.09690413,
"weeth_value_eth": 1.09690413,
"weeth_value_usd": 1825.72
},
"meta": {
"timestamp": "2026-06-12T19:35:38.966Z",
"request_id": "73bcf63e-21d6-4bfb-8275-1f384b0c1b26"
},
"status": "ok",
"message": "weETH retrieved successfully",
"success": true
}