Skip to Content

Daily Short Sale Volume

Get daily short sale volume data for a security. Supports US stocks (FINRA/NASDAQ) and HK stocks (HKEX). US data is updated bi-weekly; HK data is updated each trading day.

CLI
longbridge short-trades TSLA.US
longbridge short-trades 700.HK --count 30

Parameters

SDK method parameters.

NameTypeRequiredDescription
symbolstringYESSecurity symbol; supports US (e.g. TSLA.US) and HK (e.g. 700.HK)
countintegerNONumber of records to return (1–100, default 20)

Request Example

Response

Response Example

US stocks (.US suffix):

json
{
  "code": 0,
  "message": "success",
  "data": [
    {
      "timestamp": "2026-05-15T04:00:00Z",
      "nus_amount": "5748485",
      "ny_amount": "0",
      "total_amount": "15778974",
      "rate": "0.3643",
      "close": "300.230"
    }
  ]
}

HK stocks (.HK suffix):

json
{
  "code": 0,
  "message": "success",
  "data": [
    {
      "timestamp": "2026-05-17T16:00:00Z",
      "amount": "2926000",
      "balance": "1318056100.00",
      "total_amount": "29497076",
      "rate": "0.0992",
      "close": "449.2"
    }
  ]
}

Response Status

StatusDescriptionSchema
200SuccessShortTradesResponse
400Bad requestNone

Schemas

US Response (.US symbols)

NameTypeRequiredDescription
dataobject[]falseDaily short trade volume records
∟ timestampstringfalseTrading date (RFC 3339, e.g. 2026-05-15T04:00:00Z)
∟ nus_amountstringfalseNASDAQ short sale volume (shares)
∟ ny_amountstringfalseNYSE short sale volume (shares)
∟ total_amountstringfalseTotal trading volume for the day
∟ ratestringfalseShort ratio (short volume ÷ total volume)
∟ closestringfalseClosing price

HK Response (.HK symbols)

NameTypeRequiredDescription
dataobject[]falseDaily short trade volume records
∟ timestampstringfalseTrading date (RFC 3339, e.g. 2026-05-15T04:00:00Z)
∟ amountstringfalseShort sale turnover amount (HKD)
∟ balancestringfalseShort position balance
∟ total_amountstringfalseTotal trading turnover for the day
∟ ratestringfalseShort ratio (short turnover ÷ total turnover)
∟ closestringfalseClosing price