/v1/overview
Combined Uniswap snapshot (TVL + volume + fees + top pool)
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/uniswap-api/v1/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/uniswap-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/uniswap-api/v1/overview");
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/overview",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "Snapshot of Uniswap across all chains: TVL, DEX volume, fees and the single largest pool.",
"source": "DeFiLlama",
"fees_24h": 638617,
"fees_30d": 52824239,
"protocol": "Uniswap",
"top_pool": {
"apy": 18.42,
"tvl": 99695853,
"chain": "Base",
"symbol": "WETH-USDC",
"il_risk": "yes",
"pool_id": "b99bcdf5-1350-4269-981e-0e9b5cccb007",
"version": "v3",
"apy_base": 18.42,
"apy_reward": null,
"volume_24h": 16774267.8
},
"total_tvl": 2811641757,
"volume_7d": 8597343326,
"volume_24h": 604051347,
"chain_count": 46
},
"meta": {
"timestamp": "2026-06-14T08:04:39.296Z",
"request_id": "ac2b59a9-0542-45ce-ac60-94ab0ca4a985"
},
"status": "ok",
"message": "Uniswap overview retrieved successfully",
"success": true
}