/v1/total
Market-wide DEX volume
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/dexvolume-api/v1/total" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dexvolume-api/v1/total", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dexvolume-api/v1/total");
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/total",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"change_1d_pct": 19.69,
"change_7d_pct": -15.82,
"dexes_tracked": 1164,
"change_30d_pct": 38.1,
"total_volume_7d": 65053001553,
"total_volume_24h": 7148795019,
"total_volume_30d": 205896560754
},
"meta": {
"timestamp": "2026-06-09T03:03:17.885Z",
"request_id": "261630c6-bf82-40ca-a8e2-ff9b969f11e1"
},
"status": "ok",
"message": "Total volume retrieved successfully",
"success": true
}