Unusual Whales UnusualWhales API

V2 Short Interest and Float

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

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

days_to_cover string

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

fee_rate date

The fee rate.

market_date date

The date of the short interest data.

rebate_rate date

The rebate rate.

short_interest integer

The total number of shares sold short.

short_shares_available date

The short shares available.

si_float string

The short interest float ratio.

si_float_with_synth_long_pct_of_total_shares string

The short interest float ratio with volume of shares sold short added to total float.

symbol string

The ticker symbol.

total_float 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/v2" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response Example 200
{
  "data": {
    "days_to_cover": "2.1",
    "fee_rate": "0.2782",
    "market_date": "2023-04-15",
    "rebate_rate": "3.3518",
    "short_interest": 75000,
    "short_shares_available": 10000000,
    "si_float": "0.017647058",
    "si_float_with_synth_long_pct_of_total_shares": "0.01734104046",
    "symbol": "EXMP",
    "total_float": 4250000
  }
}