Ir al contenido
GET /v1/top

Top DEXes by volume

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/dexvolume-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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"
…