/v1/overview
Whole-DeFi fees/revenue total + ranked protocols
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/defifees-api/v1/overview" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/defifees-api/v1/overview", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/defifees-api/v1/overview");
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/defifees-api/v1/overview",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Gross fees paid by users (USD).",
"metric": "fees",
"source": "DeFiLlama",
"total_d7": 417533537,
"protocols": [
{
"d7": 114664159,
"y1": 5940722926,
"d30": 492275276,
"h24": 16390683,
"name": "Tether",
"chains": [
"Off Chain"
],
"category": "Stablecoin Issuer"
},
{
"d7": 45101691,
"y1": 2359846538,
"d30": 193725799,
"h24": 6403139,
"name": "Circle USDC",
"chains": [
"Ethereum",
"Off Chain"
],
"category": "Stablecoin Issuer"
},
{
"d7": 24083618,
"y1": 998283502,
"d30": 75580350,
"h24": 2707459,
"name": "Hyperliquid Perps",
"chains": [
"Hyperliquid L1"
],
"category": "Derivatives"
},
{
"d7": 13854931,
"y1": 450937163,
"d30": 60737108,
"h24": 2073964,
"name": "Canton",
"chains": [
"Canton"
],
"category": "Chain"
},
{
"d7": 4084593,
"y1": 362893372,
"d30": 15713231,
"h24": 1386445,
"name": "Ethena USDe",
"chains": [
"Ethereum"
],
"category": "Basis Trading"
},
{
"d7": 7753408,
"y1": 544919170,
"d30": 38618524,
"h24": 1304384,
"name": "PumpSwap",
"chains": [
"Solana"
],
"category": "Dexs"
},
{
"d7": 1176000,
"y1": 49511125,
"d30": 4584370,
"h24": 1158162,
"name": "Chainlink Staking",
"chains": [
"Ethereum"
],
"category": "Services"
},
{
"d7": 6386958,
"y1": 447504180,
"d30": 31272812,
"h24": 1058805,
"name": "Tron",
"chains": [
"Tron"
],
"category": "Chain"
},
{
"d7": 8167427,
"y1": 769156005,
"d30": 39452551,
"h24": 1051359,
"name": "Lido",
"chains": [
"Ethereum"
],
…