/v1/total
Market-wide DEX volume
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}