Concepts › Signals › Fundamentals › Short interest
short_interest_settlement_date
Settlement date of the most recent short-interest report.
Watch this signal live on real tickers: Open in Explore →
At a glance
| Type | date |
| Group | Fundamentals |
| Category | Short interest |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | recent only (forward-only from first computation) |
| Nullable | yes — NULL where not applicable |
Short positioning: readings, ratios, days-to-cover, and their flags.
Query it
Every applicable form factor, grouped by endpoint family. Swap YOUR_KEY for the value from /dashboard/keys. Response payloads are real captures, sampled 2026-08-18 and trimmed — your run's values and dates will differ.
Use scan /v2/scan
The whole market through a WHERE clause — this signal composed freely with any other column. Docs →
Live — the whole market, ranked by this column
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=short_interest_settlement_date IS NOT NULL" \
-d "order=short_interest_settlement_date" -d "columns=short_interest_settlement_date" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:25:47.801Z",
"query": {
"q": "short_interest_settlement_date IS NOT NULL",
"limit": 2,
"order": "short_interest_settlement_date",
"dir": "desc",
"fields": [
"short_interest_settlement_date"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "A",
"name": "Agilent Technologies Inc.",
"asset_class": "stocks",
"asset_type": "CS",
"price": 147.295,
"day_change_pct": -0.0083,
"gap_pct": -0.0048,
"relative_volume": null,
"market_cap": 41949616642,
"short_interest_settlement_date": "2026-07-31T00:00:00.000Z"
},
{
"ticker": "AA",
"name": "Alcoa Corporation",
"asset_class": "stocks",
"asset_type": "CS",
"price": 51.857,
"day_change_pct": 0.0376,
"gap_pct": 0.0044,
"relative_volume": null,
"market_cap": 13190194061,
"short_interest_settlement_date": "2026-07-31T00:00:00.000Z"
}
]
}As-of — the same scan at a past date
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=short_interest_settlement_date IS NOT NULL" \
-d "order=short_interest_settlement_date" -d "columns=short_interest_settlement_date" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-05-20",
"query": {
"q": "short_interest_settlement_date IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "short_interest_settlement_date",
"dir": "desc",
"fields": [
"short_interest_settlement_date"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 0,
"results": []
}Use series /v2/series
Its history over time, on one aligned grid. Docs →
History — the column on an aligned time grid
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,short_interest_settlement_date" \
-H "Authorization: Bearer YOUR_KEY"Response (sampled 2026-08-18, trimmed)
{
"as_of": "2026-08-18T00:25:50.418Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"short_interest_settlement_date"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"short_interest_settlement_date": "2026-07-15T00:00:00.000Z"
},
{
"t": "2026-08-13",
"close": 305.26,
"short_interest_settlement_date": "2026-07-31T00:00:00.000Z"
},
{
"t": "2026-08-14",
"close": 305.93,
"short_interest_settlement_date": "2026-07-31T00:00:00.000Z"
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"short_interest_settlement_date": "2026-07-15T00:00:00.000Z"
},
{
"t": "2026-08-13",
"close": 496.88,
"short_interest_settlement_date": "2026-07-31T00:00:00.000Z"
},
{
"t": "2026-08-14",
"close": 495.4,
"short_interest_settlement_date": "2026-07-31T00:00:00.000Z"
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.