Retrieve Total Options Volume
Returns the total options volume and premium for a given trading date.
get/api/market/total-options-volume
Query parameters
limitinteger
Example:10
How many items to return. Default is 1. Max is 500. Min is 1.
Response
Successful response with total options volume data.
Example response
{
"data": [
{
"date": "2023-09-08",
"call_volume": 22074116,
"put_volume": 19941285,
"call_premium": "7306144788.68",
"put_premium": "8413594929.65"
}
]
}