Zum Inhalt springen
GET /v1/meta

Service metadata

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

Beispiel-Response

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

{
    "data": {
        "note": "Dollar amounts are USD. aggregator/chain are DeFiLlama slugs (jupiter-aggregator, 1inch, solana, ethereum).",
        "source": "DeFiLlama aggregators (api.llama.fi/overview/aggregators & /summary/aggregators, live)",
        "service": "dexaggregators-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/chain": "Aggregator volume and top routers for one chain (chain=solana).",
            "GET /v1/overview": "Total aggregator volume plus aggregators ranked by 24h routed volume (limit=50).",
            "GET /v1/aggregator": "One aggregator's volume — 24h/7d/30d/all-time (aggregator=jupiter-aggregator)."
        },
        "description": "Live trading volume routed through DeFi DEX aggregators (Jupiter, 1inch, CowSwap, Paraswap…), from DeFiLlama. Aggregators don't hold liquidity — they split a trade across many DEXes for the best price, so their volume is the best measure of where swap flow actually routes. The overview endpoint returns total aggregator volume (24h/7d/30d) plus every aggregator ranked by what it routes; the aggregator endpoint returns one aggregator's figures (24h/7d/30d/all-time); the chain endpoint returns aggregator volume and top routers for one blockchain. Live, no key, nothing stored. The swap-routing / aggregator-volume cut of DeFi — distinct from the spot-DEX-volume, fees-and-revenue, TVL and exchange-ticker APIs.",
        "upstream_status": "ok",
        "total_volume_24h_usd": 2418138859
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:46.811Z",
        "request_id": "d9185051-4880-4f3d-b6fb-d091df18eb3c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}