get_derivatives_summary
Retrieve volume details for a specific perpetual protocol, including aggregated or broken-down charts, using protocol slug as input. Exclude charts as needed for streamlined data.
Instructions
GET /api/summary/derivatives/{protocol}
Volume Details about a specific perp protocol.
Parameters:
protocol: protocol slug (e.g., 'hyperliquid')
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": false,
"title": "Exclude Total Data Chart",
"type": "boolean"
},
"exclude_total_data_chart_breakdown": {
"default": false,
"title": "Exclude Total Data Chart Breakdown",
"type": "boolean"
},
"protocol": {
"title": "Protocol",
"type": "string"
}
},
"required": [
"protocol"
],
"title": "get_derivatives_summaryArguments",
"type": "object"
}