DeFi
DEX volume market overview API
Market-wide DEX trading volume totals (24h/7d/30d/all-time) plus a ranked leaderboard of the top DEXes by 24h volume. Sourced from DefiLlama /overview/dexs. Answers 'total DEX volume today','which DEX has the most volume right now'.
Price$0.01per request
MethodPOST
Route/v1/defi/dex-overview
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
defidexvolumeoverviewmarketleaderboarddefillamaamm
API URL
Integration docshttps://x402.hexl.dev/v1/defi/dex-overviewExample request
{
"limit": 2
}Example response
{
"metric": "volume",
"total24hUsd": 9305814027,
"total7dUsd": 47587972998,
"total30dUsd": 190157461103,
"totalAllTimeUsd": 13002367808841,
"change1dPct": 11.23,
"change7dPct": null,
"change30dPct": null,
"protocolCount": 1200,
"topProtocols": [
{
"name": "Uniswap",
"category": "Dexs",
"volume24hUsd": 2143172099,
"volume30dUsd": 38452828958
}
]
}Input schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"minimum": 1,
"maximum": 100,
"default": 20
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}