Naar de inhoud
GET /v1/volume

Uniswap DEX trading volume (24h/7d/30d/all-time, with change)

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/volume" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/uniswap-api/v1/volume", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/uniswap-api/v1/volume");
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/volume",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "DEX trading volume across all Uniswap deployments, in USD.",
        "chains": [
            "Ethereum",
            "Arbitrum",
            "OP Mainnet",
            "Polygon",
            "Celo",
            "ZKsync Era",
            "Sei",
            "Taiko",
            "Scroll",
            "Rootstock",
            "Filecoin",
            "Boba",
            "Moonbeam",
            "Manta",
            "Mantle",
            "Linea",
            "BSC",
            "Avalanche",
            "Base",
            "Zora",
            "Blast",
            "Polygon zkEVM",
            "Gnosis",
            "BOB",
            "Lisk",
            "Corn",
            "Unichain",
            "World Chain",
            "Ink",
            "Soneium",
            "Hemi",
            "Saga",
            "LightLink",
            "GOAT",
            "XDC",
            "Lens",
            "Telos",
            "Nibiru",
            "Plasma",
            "Monad",
            "Etherlink",
            "Sonic",
            "X Layer",
            "Tempo"
        ],
        "source": "DeFiLlama",
        "protocol": "Uniswap",
        "volume_7d": 8597343326,
        "volume_24h": 604051347,
        "volume_30d": 41539216070,
        "change_1d_pct": -47.57,
        "change_7d_pct": null,
        "change_30d_pct": null,
        "volume_all_time": 3705560478591
    },
    "meta": {
        "timestamp": "2026-06-14T08:04:39.517Z",
        "request_id": "876e0cae-f2de-47da-a2ae-d67cb169c17a"
    },
    "status": "ok",
    "message": "Uniswap volume retrieved successfully",
    "success": true
}