/v1/stats
Global DEX stats
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}