Get short interest history for a company
Returns the company's bi-monthly consolidated short interest reports (FINRA), newest first. Float fields are served as null until float data ships.
Query parameters
API Key (alternatively send via X-Api-Key header)
API Key (alternatively send via X-Api-Key header)
Company ticker, use with mic or alone for US tickers
Company ticker, use with mic or alone for US tickers
Company MIC, use with ticker
Company MIC, use with ticker
Company exchange code, use with ticker
Company exchange code, use with ticker
Company key (alternative to ticker/micCode/exchange)
Company key (alternative to ticker/micCode/exchange)
Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company CUSIP
Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company CUSIP
Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company ISIN
Requires CUSIP/ISIN license. An alternative to ticker/micCode/exchange. Company ISIN
FIGI (Financial Instrument Global Identifier). An alternative to ticker/micCode/exchange.
FIGI (Financial Instrument Global Identifier). An alternative to ticker/micCode/exchange.
Company CIK (SEC Central Index Key). An alternative to ticker/micCode/exchange.
Company CIK (SEC Central Index Key). An alternative to ticker/micCode/exchange.
Fiscal.ai stable company identifier (the companyFiscalIdentifier field). An alternative to ticker/micCode/exchange.
Fiscal.ai stable company identifier (the companyFiscalIdentifier field). An alternative to ticker/micCode/exchange.
Only the N most recent reports (default: full published history)
Only the N most recent reports (default: full published history)
Response
Short interest
Example response
{
"companyKey": "NASDAQ_MSFT",
"floatShares": {
"type": [
"number"
],
"description": "Public float in shares. Always null until float is served."
},
"shortInterest": [
{
"settlementDate": "2026-07-31",
"shortInterestShares": 81311791,
"previousShortInterestShares": {
"type": [
"number"
],
"examples": [
92373474
],
"description": "Short interest at the previous settlement date. Null on a symbol's first report."
},
"changePercent": {
"type": [
"number"
],
"examples": [
-11.97
],
"description": "Percent change in short interest versus the previous settlement date."
},
"averageDailyVolume": {
"type": [
"number"
],
"examples": [
40018336
]
},
"daysToCover": {
"type": [
"number"
],
"examples": [
2.03
],
"description": "Short interest divided by average daily volume, floored at 1 by FINRA."
},
"shortPercentOfFloat": {
"type": [
"number"
],
"description": "Short interest as a percent of public float. Always null until float is served."
}
}
]
}Changes
Changed in 1 of the 6 revisions of this API.1
- ○
endpoint added
endpoint-added
- ○