Naar de inhoud
GET /v1/overview

Combined Uniswap snapshot (TVL + volume + fees + top pool)

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/uniswap-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}