跳转到内容

做空数据

Get US stock short selling data — short interest, short ratio, days to cover, and average daily volume. Records are updated bi-monthly by FINRA. Only US-listed stocks and ETFs are supported.

CLI
longbridge short-positions TSLA.US
longbridge short-positions AAPL.US --count 50

Parameters

SDK 方法参数。

NameTypeRequiredDescription
symbolstringYESUS security symbol, e.g. TSLA.US, AAPL.US
countintegerNONumber of records to return (1–100, default: 20)

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "list": [
      {
        "date": "2026-03-31",
        "rate": "0.0175",
        "short_shares": "65598603",
        "avg_daily_vol": "62121644",
        "days_cover": "1.06",
        "close": "371.750"
      }
    ]
  }
}

Response Status

StatusDescriptionSchema
200Successshort_positions_rsp
400Bad requestNone

Schemas

short_positions_rsp

NameTypeRequiredDescription
listobject[]trueShort position records
∟ datestringtrueSettlement date in YYYY-MM-DD format
∟ ratestringtrueShort ratio (short shares ÷ float)
∟ short_sharesstringtrueNumber of short shares
∟ avg_daily_volstringtrueAverage daily volume
∟ days_coverstringtrueDays-to-cover ratio (short shares ÷ avg daily vol)
∟ closestringtrueClosing price on that date