/v1/meta
Usage notes
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/defillama-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/defillama-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/defillama-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/defillama-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "DeFiLlama is the most-used analytics dashboard for decentralized finance, tracking Total Value Locked (TVL) — the dollar value deposited in DeFi protocols. /v1/protocols = DeFi protocols ranked by TVL, filterable by chain (chain=Ethereum) and category (category=Lending, Dexes, Liquid Staking, …), each with its slug, symbol, category, chains, TVL in USD and 1-day/7-day TVL change; /v1/protocol?slug=aave = a single protocol's profile and its current TVL broken down by chain; /v1/chains = every blockchain ranked by the TVL deployed on it; /v1/stablecoins = stablecoins ranked by circulating supply, with peg type and mechanism. All values are in USD and reflect the latest snapshot. This is DeFi/on-chain analytics — distinct from token price feeds. Data from DeFiLlama (free, open). Use a protocol slug from /v1/protocols for /v1/protocol.",
"source": "DeFiLlama — open DeFi TVL analytics (llama.fi)",
"endpoints": [
"/v1/protocols",
"/v1/protocol",
"/v1/chains",
"/v1/stablecoins",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T16:23:42.607Z",
"request_id": "7ce271d0-1e36-4542-ae69-708c4d784e71"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}