get_dex_overview_by_chain
Retrieve a comprehensive overview of decentralized exchanges (DEXs) on a specific blockchain, including volume summaries and historical data, tailored for chain-specific analysis.
Instructions
GET /api/overview/dexs/{chain}
List all dexs along with summaries of their volumes and dataType history data filtering by chain.
Parameters:
chain: chain name (e.g., 'ethereum')
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 |
---|---|---|---|
chain | Yes | ||
exclude_total_data_chart | No | ||
exclude_total_data_chart_breakdown | No |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"title": "Chain",
"type": "string"
},
"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"
}
},
"required": [
"chain"
],
"title": "get_dex_overview_by_chainArguments",
"type": "object"
}