Catalog/defi-protocol-revenue

DeFi

Protocol revenue API

Protocol-side revenue (the share of fees kept by the protocol/treasury) over 24h/7d/30d/all-time with change percentages. Sourced from DefiLlama /summary/fees/{protocol}?dataType=dailyRevenue. Answers 'how much revenue does Aave actually keep','what is the protocol's take-rate'.

Price$0.01per request
MethodPOST
Route/v1/defi/protocol-revenue
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
defirevenueprotocoltreasuryearningsfeesdefillamametrics
API URLhttps://x402.hexl.dev/v1/defi/protocol-revenue
Integration docs
Example request
{
  "protocol": "aave"
}
Example response
{
  "name": "Aave",
  "metric": "revenue",
  "revenue24hUsd": 231222,
  "revenue7dUsd": 1194287,
  "revenue30dUsd": 6440833,
  "revenue1yUsd": null,
  "revenueAllTimeUsd": 294915000,
  "change1dPct": 3.1,
  "change7dPct": null,
  "change30dPct": null,
  "chains": [
    "Ethereum"
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "protocol"
  ],
  "properties": {
    "protocol": {
      "type": "string",
      "examples": [
        "aave",
        "uniswap",
        "lido"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}