Skip to content
GET /v1/top

Top DEXes by volume

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/dexvolume-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "sort": "24h",
        "chain": "all",
        "count": 25,
        "dexes": [
            {
                "name": "Uniswap V4",
                "chains": [
                    "Ethereum",
                    "OP Mainnet",
                    "Base",
                    "Arbitrum",
                    "Polygon",
                    "Blast",
                    "Zora",
                    "World Chain",
                    "Ink",
                    "Soneium",
                    "Avalanche",
                    "BSC",
                    "Unichain",
                    "Monad",
                    "X Layer"
                ],
                "category": "Dexs",
                "volume_7d": 7498919995,
                "volume_24h": 1011550256,
                "volume_30d": 24606820224,
                "change_1d_pct": 53.55,
                "change_7d_pct": -1.42,
                "dominance_pct": 14.15,
                "change_30d_pct": 57.38
            },
            {
                "name": "PancakeSwap AMM V3",
                "chains": [
                    "BSC",
                    "Ethereum",
                    "Polygon zkEVM",
                    "ZKsync Era",
                    "Arbitrum",
                    "Linea",
                    "Base",
                    "opBNB",
                    "Solana",
                    "Monad"
                ],
                "category": "Dexs",
                "volume_7d": 6237077961,
                "volume_24h": 697947471,
                "volume_30d": 18851411117,
                "change_1d_pct": -2.05,
                "change_7d_pct": -32.95,
                "dominance_pct": 9.76,
                "change_30d_pct": 98.77
            },
            {
                "name": "Uniswap V3",
                "chains": [
                    "Ethereum",
                    "Arbitrum",
                    "OP Mainnet",
                    "Polygon",
                    "Celo",
                    "ZKsync Era",
                    "Sei",
                    "Taiko",
                    "Scroll",
                    "Rootstock",
                    "Filecoin",
                    "Boba",
                    "Moonbeam",
                    "Manta",
                    "Mantle",
                    "Linea",
                    "BSC",
                    "Avalanche",
                    "Base",
                    "Polygon zkEVM",
                    "Blast",
                    "Gnosis",
                    "BOB",
                    "Lisk",
                    "Corn",
                    "Unichain",
                    "Hemi",
                    "Saga",
                    "LightLink",
                    "GOAT",
                    "XDC",
                    "Lens",
                    "Telos",
                    "World Chain",
                    "Nibiru",
                    "Plasma",
                    "Monad",
                    "Etherlink",
                    "Sonic"
…