get_dex_summary
Retrieve detailed summary and historical data on DEX volume for specific protocols, excluding aggregated or broken-down charts as needed.
Instructions
GET /api/summary/dexs/{protocol}
Get summary of dex volume with historical data.
Parameters:
protocol: protocol slug (e.g., 'uniswap')
exclude_total_data_chart: true to exclude aggregated chart from response
exclude_total_data_chart_breakdown: true to exclude broken down chart from response
Input Schema
Name | Required | Description | Default |
---|---|---|---|
exclude_total_data_chart | No | ||
exclude_total_data_chart_breakdown | No | ||
protocol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"exclude_total_data_chart": {
"default": true,
"title": "Exclude Total Data Chart",
"type": "boolean"
},
"exclude_total_data_chart_breakdown": {
"default": true,
"title": "Exclude Total Data Chart Breakdown",
"type": "boolean"
},
"protocol": {
"title": "Protocol",
"type": "string"
}
},
"required": [
"protocol"
],
"title": "get_dex_summaryArguments",
"type": "object"
}