get_dex_overview
Retrieve a list of decentralized exchanges (DEXs) with summaries of trading volumes and historical data. Customize responses by excluding aggregated or breakdown charts for focused insights.
Instructions
GET /api/overview/dexs
List all dexs along with summaries of their volumes and dataType history data.
Parameters:
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 |
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"
}
},
"title": "get_dex_overviewArguments",
"type": "object"
}