/v1/weeth
weETH wrapped-token supply and its eETH/ETH/USD rate
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}