DeFi
Protocol / chain TVL API
Total value locked for a specific protocol (by DefiLlama slug, e.g. 'aave') or, with no protocol, the top chains by TVL. Sourced from DefiLlama.
Price$0.01per request
MethodPOST
Route/v1/defi/tvl
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache600s public
defitvlprotocolchaindefillama
API URL
Integration docshttps://x402.hexl.dev/v1/defi/tvlExample request
{
"protocol": "aave"
}Example response
{
"kind": "protocol",
"name": "Aave",
"category": "Lending",
"tvlUsd": 12000000000,
"chainTvls": {
"Ethereum": 9000000000,
"Base": 500000000
}
}Input schema
{
"type": "object",
"properties": {
"protocol": {
"type": "string",
"examples": [
"aave",
"uniswap",
"lido"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}