Zum Inhalt springen
GET /v1/stats

Global DEX stats

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "network": "MAYAChain",
        "swap_volume": 1276612504109.4592,
        "swap_count_24h": 42970,
        "swap_count_30d": 657729,
        "cacao_price_usd": 0.11337533,
        "swap_count_total": 11464260,
        "daily_active_users": 79,
        "add_liquidity_count": 16579,
        "add_liquidity_volume": 26357565340.99164,
        "monthly_active_users": 1293
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:03.838Z",
        "request_id": "fb538672-1f45-4aec-bb77-57270fe12d2a"
    },
    "status": "ok",
    "message": "Stats retrieved successfully",
    "success": true
}