/v1/fees
Convex protocol fees and revenue (24h/7d/30d)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"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
}