Unusual Whales UnusualWhales API

Total Options Volume

GET https://api.unusualwhales.com/api/market/total-options-volume

Request

Security: Bearer Auth Authorization: Bearer <token>

Query Parameters

limit Default 1 Max 500 Min 1 optional

How many items to return. Default: 1. Max: 500. Min: 1.

Example: 10 Default: 1
>= 1 <= 500

Responses

200 422 500

Response Body 200 OK

call_premium Market General Call Premium

The sum of the premium of all the call transactions that executed.

Example: 9908777.0
call_volume Market General Call Volume

The sum of the size of all the call transactions that executed.

Example: 990943
date Market General Trading day

A trading date in ISO format.

Example: 2023-09-08
put_premium Market General Put Premium

The sum of the premium of all the put transactions that executed.

Example: 163537151
put_volume Market General Put Volume

The sum of the size of all the put transactions that executed.

Example: 808326
Try It GET
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/market/total-options-volume" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "call_premium": "7306144788.68",
      "call_volume": 22074116,
      "date": "2023-09-08",
      "put_premium": "8413594929.65",
      "put_volume": 19941285
    }
  ]
}