/v1/dex
Fluid DEX trading volume and protocol fees (24h/7d/30d)
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/fluid-api/v1/dex" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fluid-api/v1/dex", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fluid-api/v1/dex");
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/fluid-api/v1/dex",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Fluid's DEX trading volume and the protocol's fees, in USD.",
"source": "DeFiLlama",
"fees_7d": 846521,
"fees_24h": 92874,
"fees_30d": 3840872,
"protocol": "Fluid",
"dex_volume_7d": 1063982838,
"dex_volume_24h": 56066949,
"dex_volume_30d": 5285499517,
"dex_volume_all_time": 225505511809
},
"meta": {
"timestamp": "2026-06-14T08:04:25.455Z",
"request_id": "d5c0e602-c27d-4caa-846d-5243a48df9f3"
},
"status": "ok",
"message": "Fluid DEX metrics retrieved successfully",
"success": true
}