Skip to main content
POST
/
api
/
v1
/
fundamentals
/
short-interest
Recent short-interest readings for one symbol.
finterm tool short_interest GME --as-of-date 2024-03-15
{
  "finterm": {
    "schema": "<string>",
    "tool": "<string>",
    "args": {},
    "request_id": "<string>",
    "cursor": "<string>"
  },
  "data": {
    "ticker": "<string>",
    "records": [
      {
        "settlement_date": "<string>",
        "short_interest": 123,
        "avg_daily_volume": 123,
        "days_to_cover": 123
      }
    ],
    "latest": {
      "settlement_date": "<string>",
      "short_interest": 123,
      "days_to_cover": 123
    },
    "trend": {
      "change_percent": 123
    }
  }
}

Authorizations

Authorization
string
header
required

A live account API key from FINTERM_API_KEY.

Body

application/json
ticker
string
required

Stock ticker symbol

as_of_date
string
required

Short-interest cutoff date in YYYY-MM-DD format

limit
number

Number of periods to return

Required range: 1 <= x <= 24

Response

Success.

The two-key success envelope.

finterm
object
required

Canonical result meta header.

data
object
required