/v1/meta
Service metadata & live sample
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}