/v1/meta
Service metadata
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/etherfi-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/etherfi-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "All endpoints take no parameters. APR is an annualised percent; total ETH restaked is the eETH supply (rebasing, = ETH); weETH rate is eETH per weETH (above 1.0, rising as yield accrues); USD uses the live ETH price. A ~5-minute cache fronts the upstreams.",
"source": "ether.fi public APR API + Ethereum public JSON-RPC + Yahoo Finance, keyless, live",
"service": "etherfi-api",
"endpoints": {
"GET /v1/apr": "eETH restaking APR — latest, 7-day average and history.",
"GET /v1/meta": "This document.",
"GET /v1/weeth": "weETH wrapped-token supply and its eETH/ETH/USD rate.",
"GET /v1/restaked": "Total ETH restaked (eETH supply) and its USD value."
},
"sample_apr": {
"apr_pct": 2.69
},
"description": "Live data for ether.fi, the largest liquid-restaking protocol on Ethereum, keyless from ether.fi's public APR feed and directly from the chain. eETH is a rebasing token worth one ETH that earns Ethereum staking plus EigenLayer restaking rewards; weETH is its wrapped, value-accruing version that DeFi lends against. The apr endpoint gives the eETH restaking APR (latest, 7-day average, history); restaked reads the chain for the total ETH restaked (eETH supply) and its USD value; weeth gives the wrapped token's supply and its on-chain eETH/ETH rate. The ether.fi liquid-restaking cut — distinct from the synthetic-dollar protocol feed, the generic staking and yield-aggregator feeds and the generic token-info feed.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T19:35:39.048Z",
"request_id": "109be280-b47f-4003-b0ae-a8bbf8ccb27d"
},
"status": "ok",
"message": "Meta",
"success": true
}