Unusual Whales UnusualWhales API

V1 Short Interest and Float (Deprecated)

GET https://api.unusualwhales.com/api/shorts/{ticker}/interest-float

Request

Security: Bearer Auth Authorization: Bearer <token>

Path Parameters

ticker SingleTicker required

A single ticker

Example: AAPL

Responses

200 422 500

Response Body 200 OK

created_at string

The datetime the record was created.

days_to_cover_returned string

The estimated number of days to cover all short positions based on average daily trading volume.

market_date date

The date of the short interest data.

percent_returned string

The percentage of float that is shorted.

si_float_returned integer

The number of shares shorted.

symbol string

The ticker symbol.

total_float_returned integer

The float (available shares for trading).

Try It GET
Path Parameters

Request Sample
curl -X GET "https://api.unusualwhales.com/api/shorts/{ticker}/interest-float" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": {
    "created_at": "2023-04-15T16:30:00Z",
    "days_to_cover_returned": "2.1",
    "market_date": "2023-04-15",
    "percent_returned": "5.67",
    "si_float_returned": 4250000,
    "symbol": "EXMP",
    "total_float_returned": 75000000
  }
}