Skip to main content
GET
/
api
/
v1
/
shortinterest
Short Interest Data
curl --request GET \
  --url 'https://api.benzinga.com/api/v1/shortinterest?token='
{
  "shortInterestData": {
    "AAPL": {
      "data": [
        {
          "recordDate": "2026-01-12",
          "symbol": "AAPL",
          "company": "Apple Inc. Common Stock",
          "totalShortInterest": "112732788",
          "daysToCover": 2.71,
          "shortPercentOfFloat": 0.77,
          "shortPriorMo": "122035714",
          "percentChangeMoMo": -7.62,
          "sharesFloat": "14688854878",
          "averageDailyVolume": "41632615",
          "sharesOutstanding": "14697926000",
          "exchange": "NNM",
          "sector": "Technology",
          "industry": "Consumer Electronics",
          "exchangeReceiptDate": "2026-01-05",
          "settlementDate": "2025-12-31"
        }
      ]
    }
  }
}
{
  "shortInterestData": {
    "AAPL": {
      "data": [
        {
          "recordDate": "2026-01-12",
          "symbol": "AAPL",
          "company": "Apple Inc. Common Stock",
          "totalShortInterest": "112732788",
          "daysToCover": 2.71,
          "shortPercentOfFloat": 0.77,
          "shortPriorMo": "122035714",
          "percentChangeMoMo": -7.62,
          "sharesFloat": "14688854878",
          "averageDailyVolume": "41632615",
          "sharesOutstanding": "14697926000",
          "exchange": "NNM",
          "sector": "Technology",
          "industry": "Consumer Electronics",
          "exchangeReceiptDate": "2026-01-05",
          "settlementDate": "2025-12-31"
        }
      ]
    }
  }
}

Authorizations

token
string
query
required

Query Parameters

symbols
string
required

Comma-separated list of stock ticker symbols (e.g., AAPL,MSFT,TSLA). Required.

finraReport
boolean

Include FINRA short interest report data. Default: false

page
integer

Page number for pagination. Used with pageSize parameter.

pageSize
integer

Number of results per page. Default varies by endpoint configuration.

from
string

Start date for short interest data. Format: YYYY-MM-DD

to
string

End date for short interest data. Format: YYYY-MM-DD

Response

Short interest data for requested symbols

The response is of type object.