Naar de inhoud
GET /v1/dexes

DEXes active on a chain

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "note": "The decentralized exchanges active on one chain — each with its id, name, protocol, 24h volume, transaction count and pool count. Pass network (e.g. solana, ethereum; see /v1/networks).",
        "count": 9,
        "dexes": [
            {
                "name": "Manifest",
                "dex_id": "manifest",
                "protocol": "manifest",
                "pools_count": 87,
                "volume_usd_24h": 104822736.48523962,
                "transactions_24h": 175513
            },
            {
                "name": "Meteora",
                "dex_id": "meteora",
                "protocol": "meteora",
                "pools_count": 4100,
                "volume_usd_24h": 65870623.11659387,
                "transactions_24h": 499537
            },
            {
                "name": "Meteora DAAM V2",
                "dex_id": "meteora_daam_v2",
                "protocol": "meteora_daam_v2",
                "pools_count": 9133,
                "volume_usd_24h": 168773367.5028957,
                "transactions_24h": 2242142
            },
            {
                "name": "Meteora DBC",
                "dex_id": "meteora_dbc",
                "protocol": "meteoradbc",
                "pools_count": 1162,
                "volume_usd_24h": 702807.2310968463,
                "transactions_24h": 17800
            },
            {
                "name": "Orca",
                "dex_id": "orca",
                "protocol": "orca",
                "pools_count": 4293,
                "volume_usd_24h": 128704716.78215253,
                "transactions_24h": 515233
            },
            {
                "name": "Pump.fun",
                "dex_id": "pumpfun",
                "protocol": "pumpfun",
                "pools_count": 29578,
                "volume_usd_24h": 47483804.94351088,
                "transactions_24h": 1912522
            },
            {
                "name": "PumpSwap",
                "dex_id": "pumpswap",
                "protocol": "pumpswap",
                "pools_count": 12085,
                "volume_usd_24h": 3447984651.769251,
                "transactions_24h": 13676657
            },
            {
                "name": "Raydium",
                "dex_id": "raydium",
                "protocol": "raydium",
                "pools_count": 5203,
                "volume_usd_24h": 8506878.422915524,
                "transactions_24h": 252254
            },
            {
                "name": "Raydium CLMM",
                "dex_id": "raydium_clmm",
                "protocol": "raydium",
                "pools_count": 2954,
                "volume_usd_24h": 58781236.84773113,
                "transactions_24h": 649975
            }
        ],
        "source": "DexPaprika",
        "network": "solana"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:31.613Z",
        "request_id": "b1b9f4f2-a52a-4a0b-a937-e0eb39d09b8f"
    },
    "status": "ok",
    "me
…