get_options_summary
Retrieve summarized options DEX volume data, including historical trends, for specific protocols using protocol slug and customizable data types like dailyPremiumVolume or dailyNotionalVolume.
Instructions
GET /api/summary/options/{protocol}
Get summary of options dex volume with historical data.
Parameters:
    protocol: protocol slug (e.g., 'lyra')
    data_type: desired data type (default: 'dailyNotionalVolume')
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| data_type | No | dailyNotionalVolume | |
| protocol | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "data_type": {
      "default": "dailyNotionalVolume",
      "enum": [
        "dailyPremiumVolume",
        "dailyNotionalVolume"
      ],
      "title": "Data Type",
      "type": "string"
    },
    "protocol": {
      "title": "Protocol",
      "type": "string"
    }
  },
  "required": [
    "protocol"
  ],
  "title": "get_options_summaryArguments",
  "type": "object"
}