Catalog/defi-protocol

DeFi

Full protocol detail + per-chain TVL API

Full DefiLlama protocol detail with per-chain TVL breakdown, total TVL, market cap, and metadata, splitting base-chain TVL from suffixed buckets (staking/borrowed/pool2). Sourced from DefiLlama /protocol/{slug}. Answers 'how much TVL does Aave have on each chain','what category and market cap is this protocol'.

Price$0.01per request
MethodPOST
Route/v1/defi/protocol
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
defiprotocoltvlchainsmarketcapdefillamalendingdetail
API URLhttps://x402.hexl.dev/v1/defi/protocol
Integration docs
Example request
{
  "protocol": "aave"
}
Example response
{
  "name": "Aave",
  "symbol": "AAVE",
  "category": "Lending",
  "url": "https://aave.com",
  "mcapUsd": 4000000000,
  "chains": [
    "Ethereum",
    "Base"
  ],
  "totalTvlUsd": 9500000000,
  "chainTvls": [
    {
      "chain": "Ethereum",
      "tvlUsd": 9000000000
    },
    {
      "chain": "Base",
      "tvlUsd": 500000000
    }
  ],
  "extraTvls": {
    "staking": 158000000,
    "borrowed": 179000000
  }
}
Input schema
{
  "type": "object",
  "required": [
    "protocol"
  ],
  "properties": {
    "protocol": {
      "type": "string",
      "examples": [
        "aave",
        "uniswap",
        "lido"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}