/v1/total
Market-wide fee totals
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/cryptofees-api/v1/total" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptofees-api/v1/total", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptofees-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/cryptofees-api/v1/total",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"change_1d_pct": 12.18,
"change_7d_pct": -2.96,
"total_fees_7d": 433240001,
"change_30d_pct": 9.44,
"total_fees_24h": 55779813,
"total_fees_30d": 1683161283,
"protocols_tracked": 2263
},
"meta": {
"timestamp": "2026-06-09T03:03:21.711Z",
"request_id": "44e8a5f1-170e-4b03-af68-170b888bfbb0"
},
"status": "ok",
"message": "Total fees retrieved successfully",
"success": true
}