/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/uniswap-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/uniswap-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/uniswap-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/uniswap-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 (v2, v3, v4), chain (e.g. Ethereum, Base, Arbitrum), limit (1-100), min_tvl and sort (tvl or apy). All money values are USD. Other endpoints take no parameters.",
"sample": {
"total_tvl": 2811641757,
"volume_24h": 604051347
},
"source": "DeFiLlama open API (api.llama.fi + yields.llama.fi), live",
"service": "uniswap-api",
"endpoints": {
"GET /v1/tvl": "Uniswap TVL total and per-chain breakdown.",
"GET /v1/fees": "Uniswap protocol fees (24h/7d/30d).",
"GET /v1/meta": "This document.",
"GET /v1/pools": "Top Uniswap liquidity pools with TVL and APY (version, chain, limit, sort).",
"GET /v1/volume": "Uniswap DEX trading volume (24h/7d/30d/all-time, with change).",
"GET /v1/overview": "Combined Uniswap snapshot (TVL + volume + fees + top pool)."
},
"description": "Live protocol metrics for Uniswap, the largest decentralized exchange (DEX), keyless. Total value locked across every chain Uniswap is deployed on, DEX trading volume (24h/7d/30d/all-time with change), protocol fees, and the top Uniswap liquidity pools with TVL and APY (v2/v3/v4). Live, nothing stored beyond a short protective cache. The Uniswap-metrics layer for DeFi dashboards, analytics, yield and trading apps. Distinct from generic DeFi/TVL browsers — Uniswap specifically, multi-chain.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:39.685Z",
"request_id": "16e9620c-5ddf-424b-a711-29904c486024"
},
"status": "ok",
"message": "Meta",
"success": true
}