/v1/fees
Convex protocol fees and revenue (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/convex-api/v1/fees" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/convex-api/v1/fees", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/convex-api/v1/fees");
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/convex-api/v1/fees",
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": "Fees = total paid by users; revenue = the share kept by the Convex protocol. USD.",
"source": "DeFiLlama",
"fees_7d": 262752,
"fees_24h": 9964,
"fees_30d": 723855,
"protocol": "Convex Finance",
"revenue_7d": 261120,
"revenue_24h": 9085,
"revenue_30d": 715237
},
"meta": {
"timestamp": "2026-06-14T08:04:33.137Z",
"request_id": "3f51673d-986f-4cdb-af85-e7d8f4ac3bd1"
},
"status": "ok",
"message": "Convex fees retrieved successfully",
"success": true
}