Catalog/defi-fees-overview

DeFi

Fees market overview API

Market-wide DeFi fee totals (24h/7d/30d/all-time) plus a ranked leaderboard of the top fee-earning protocols by 24h fees. Sourced from DefiLlama /overview/fees. Answers 'total DeFi fees today','which protocols earn the most fees'.

Price$0.01per request
MethodPOST
Route/v1/defi/fees-overview
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
defifeesoverviewmarketleaderboardearningsdefillamaranking
API URLhttps://x402.hexl.dev/v1/defi/fees-overview
Integration docs
Example request
{
  "limit": 2
}
Example response
{
  "metric": "fees",
  "total24hUsd": 62779259,
  "total7dUsd": 385933116,
  "total30dUsd": 1667689248,
  "totalAllTimeUsd": 405094161406,
  "change1dPct": 9.75,
  "change7dPct": null,
  "change30dPct": null,
  "protocolCount": 1500,
  "topProtocols": [
    {
      "name": "Tether",
      "category": "Stablecoins",
      "fees24hUsd": 20000000,
      "fees30dUsd": 600000000
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 100,
      "default": 20
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}