Zum Inhalt springen
GET /v1/overview

Total aggregator volume + ranked aggregators

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Volume (USD) routed through DEX aggregators; they split trades across underlying DEXes for best execution.",
        "source": "DeFiLlama",
        "total_d7": 22019715569,
        "total_d30": 66359941120,
        "total_h24": 2418138859,
        "aggregators": [
            {
                "d7": 7882975448,
                "y1": 324864311879,
                "d30": 17060074338,
                "h24": 934626919,
                "name": "Jupiter Aggregator",
                "chains": [
                    "Solana"
                ],
                "category": "DEX Aggregator"
            },
            {
                "d7": 1561789473,
                "y1": 104591851706,
                "d30": 5801933981,
                "h24": 217388901,
                "name": "OKX Swap",
                "chains": [
                    "Ethereum",
                    "BSC",
                    "OKTChain",
                    "Polygon",
                    "Tron",
                    "Avalanche",
                    "Fantom",
                    "Arbitrum",
                    "OP Mainnet",
                    "Cronos",
                    "Solana",
                    "Osmosis",
                    "Aptos",
                    "ZKsync Era",
                    "Conflux",
                    "Sui",
                    "Polygon zkEVM",
                    "Sei",
                    "Linea",
                    "Mantle",
                    "Base",
                    "Stacks",
                    "Starknet",
                    "Scroll",
                    "X Layer",
                    "Manta",
                    "Metis",
                    "ZetaChain",
                    "Merlin",
                    "Blast",
                    "Mode",
                    "TON",
                    "Sonic",
                    "Unichain",
                    "Plasma"
                ],
                "category": "DEX Aggregator"
            },
            {
                "d7": 2059720231,
                "y1": 111296518275,
                "d30": 7570218481,
                "h24": 207972747,
                "name": "KyberSwap Aggregator",
                "chains": [
                    "OP Mainnet",
                    "Cronos",
                    "BSC",
                    "Ethereum",
                    "ZKsync Era",
                    "Scroll",
                    "Linea",
                    "Avalanche",
                    "Polygon",
                    "Arbitrum",
                    "Fantom",
                    "Base",
                    "Mantle",
                    "Blast",
                    "Polygon zkEVM",
                    "Sonic",
                    "Berachain",
                    "Unichain",
                    "Hyperliquid L1",
                    "Plasma",
                    "Etherlink",
                    "Monad",
                    "MegaETH"
                ],
                "category": "DEX Aggregato
…