/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/yearn-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/yearn-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/yearn-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/yearn-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "TVL/price in USD; net_apr is a fraction (0.05 = 5%); vaults with broken legacy price oracles (TVL > $50B) and shut-down/hidden vaults are filtered out.",
"source": "Yearn yDaemon API (ydaemon.yearn.fi, live)",
"service": "yearn-api",
"endpoints": {
"GET /v1/top": "Highest-yielding vaults by net APR with a TVL floor (chain=1, limit=10, min_tvl=50000).",
"GET /v1/meta": "This document.",
"GET /v1/vault": "One vault's full detail incl. strategies (chain=1, address=0x...).",
"GET /v1/chains": "Chains Yearn runs on.",
"GET /v1/vaults": "Active vaults on a chain with TVL, net APR, category, token (chain=1, limit=50)."
},
"description": "Live DeFi yield-vault data from Yearn Finance, the long-running yield aggregator, via its public yDaemon API. Yearn vaults auto-compound strategies to earn yield on a deposited token, reporting TVL, net APR (after fees) and underlying strategies. The vaults endpoint returns the active vaults on a chain with TVL, net APR, category and underlying token, sorted by TVL; the vault endpoint returns one vault's full detail (including strategies) by address; the top endpoint ranks the highest-yielding vaults by net APR with a TVL floor; the chains endpoint lists the chains Yearn runs on. Live, no key, nothing stored. Distinct from on-chain explorers, DEX-pool feeds and price APIs — this is Yearn's own vault, APR and strategy layer for the original DeFi yield aggregator.",
"upstream_status": "ok",
"ethereum_active_vaults": 170
},
"meta": {
"timestamp": "2026-06-10T22:58:16.107Z",
"request_id": "b3e5a519-c6e7-4823-87f3-2319781a9f30"
},
"status": "ok",
"message": "Meta",
"success": true
}