Zum Inhalt springen
GET /v1/top

Top DEXes by volume

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/dexvolume-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten 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"
…