API Documentation

GET/api/1/crypto-extended/defi-fees

DeFi Fees & Revenue API

Returns daily protocol fees and revenue for DeFi protocols. Protocol revenue is the "earnings" equivalent for DeFi — critical for fundamental analysis.

Parameters

2
protocolstring
query

Filter by protocol name (e.g. uniswap, aave)

daysnumber
query

Days of history (default 30, max 365)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/crypto-extended/defi-fees' \
  -H 'Accept: application/json'
200 Response
[
  {
  "protocol": "uniswap",
  "date": "2024-01-15T00:00:00.000Z",
  "total_fees": 2500000,
  "total_revenue": 500000
}
]