Vai al contenuto
GET /v1/dex

One DEX's volume

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/dexvolume-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "dex": {
            "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",
                "X Layer",
                "Zora"
            ],
            "category": "Dexs",
            "volume_7d": 6411241021,
            "volume_24h": 680206195,
            "volume_30d": 17164667875,
            "change_1d_pct": 37.89,
            "change_7d_pct": -16.99,
            "dominance_pct": 9.51,
            "change_30d_pct": 218.91
        }
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:17.633Z",
        "request_id": "a16f6247-e742-4fda-95c3-83a6db561547"
    },
    "status": "ok",
    "message": "DEX retrieved successfully",
    "success": true
}