Unusual Whales UnusualWhales API

Short Volume By Exchange

GET https://api.unusualwhales.com/api/shorts/{ticker}/volumes-by-exchange

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Query Parameters

newer_than NewerThan optional

The unix time in milliseconds or seconds at which no older results will be returned. Can be used with `older_than` to paginate by time. Also accepts an ISO date or RFC 3339 datetime (example: 2024-01-25).

Example: 1_715_083_417
older_than OlderThan optional

The unix time in milliseconds or seconds at which no newer results will be returned. Can be used with `newer_than` to paginate by time. Also accepts an ISO date or RFC 3339 datetime (example: 2024-01-25).

Example: 1_715_083_417

Responses

200 422 500

Response Body 200 OK

date date

The date of the short volume data.

exchange_name string

The exchange identifier.

market_center string

The market center identifier.

short_volume integer

The short volume for this exchange.

total_volume integer

The total volume for this exchange.

Try It GET
Path Parameters
Query Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/shorts/{ticker}/volumes-by-exchange" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": [
    {
      "date": "2023-04-15",
      "exchange_name": "NYSE",
      "market_center": "NYSE",
      "short_volume": 325000,
      "total_volume": 2150000
    },
    {
      "date": "2023-04-15",
      "exchange_name": "NASDAQ",
      "market_center": "NASDAQ",
      "short_volume": 720000,
      "total_volume": 4500000
    }
  ]
}