Catalog/defi-chains-tvl

DeFi

All chains ranked by TVL API

All chains ranked by current TVL with each chain's dominance share and native token symbol. Sourced from DefiLlama /v2/chains. Answers 'which chains have the most TVL','what is Ethereum's TVL dominance'.

Price$0.01per request
MethodPOST
Route/v1/defi/chains-tvl
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
defitvlchainsrankingdominancel1l2defillama
API URLhttps://x402.hexl.dev/v1/defi/chains-tvl
Integration docs
Example request
{
  "limit": 2
}
Example response
{
  "totalTvlUsd": 75501057525,
  "chainCount": 370,
  "chains": [
    {
      "chain": "Ethereum",
      "tvlUsd": 39397580543,
      "dominancePct": 52.18,
      "tokenSymbol": "ETH",
      "geckoId": "ethereum"
    },
    {
      "chain": "Solana",
      "tvlUsd": 8000000000,
      "dominancePct": 10.6,
      "tokenSymbol": "SOL",
      "geckoId": "solana"
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 200,
      "default": 50
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}