/v1/meta
Service metadata & live sample
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/aerodrome-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aerodrome-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aerodrome-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/aerodrome-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": "pools takes optional version (basic/v1 or cl/slipstream), incentivized (true/false), min_tvl, limit (1-100) and sort (tvl, apy or emissions). All money values are USD; APYs are percentages. Other endpoints take no parameters.",
"sample": {
"total_tvl": 301760612,
"volume_24h": 241438096
},
"source": "DeFiLlama open API (api.llama.fi + yields.llama.fi), live",
"service": "aerodrome-api",
"endpoints": {
"GET /v1/tvl": "Aerodrome TVL total and per-chain breakdown.",
"GET /v1/fees": "Aerodrome protocol fees (24h/7d/30d).",
"GET /v1/meta": "This document.",
"GET /v1/pools": "Aerodrome pools with fee APY vs AERO emission APY (version, incentivized, sort).",
"GET /v1/volume": "Aerodrome DEX trading volume (24h/7d/30d/all-time, with change).",
"GET /v1/overview": "Combined Aerodrome snapshot (TVL + volume + fees + top pool)."
},
"description": "Live protocol metrics for Aerodrome Finance, the leading ve(3,3) DEX on Base, keyless. Total value locked, DEX trading volume (24h/7d/30d/all-time with change), protocol fees, and the liquidity pools with TVL and APY split into trading-fee APY vs AERO emission (incentive) APY — the defining feature of Aerodrome's vote-incentivised model — across Basic (v1) and Slipstream (concentrated-liquidity) pools. Live, nothing stored beyond a short protective cache. The Aerodrome / Base-DeFi metrics layer for dashboards, yield, farming and trading apps. Distinct from Ethereum and BSC DEXes — Aerodrome on Base specifically, with its emission incentives.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:27.618Z",
"request_id": "b3de136b-d88b-41ea-8ddd-7b3258ff454f"
},
"status": "ok",
"message": "Meta",
"success": true
}