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.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol; supports US (e.g. TSLA.US) and HK (e.g. 700.HK) |
| count | integer | NO | Number 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
| Status | Description | Schema |
|---|---|---|
| 200 | Success | ShortTradesResponse |
| 400 | Bad request | None |
Schemas
US Response (.US symbols)
| Name | Type | Required | Description |
|---|---|---|---|
| data | object[] | false | Daily short trade volume records |
| ∟ timestamp | string | false | Trading date (RFC 3339, e.g. 2026-05-15T04:00:00Z) |
| ∟ nus_amount | string | false | NASDAQ short sale volume (shares) |
| ∟ ny_amount | string | false | NYSE short sale volume (shares) |
| ∟ total_amount | string | false | Total trading volume for the day |
| ∟ rate | string | false | Short ratio (short volume ÷ total volume) |
| ∟ close | string | false | Closing price |
HK Response (.HK symbols)
| Name | Type | Required | Description |
|---|---|---|---|
| data | object[] | false | Daily short trade volume records |
| ∟ timestamp | string | false | Trading date (RFC 3339, e.g. 2026-05-15T04:00:00Z) |
| ∟ amount | string | false | Short sale turnover amount (HKD) |
| ∟ balance | string | false | Short position balance |
| ∟ total_amount | string | false | Total trading turnover for the day |
| ∟ rate | string | false | Short ratio (short turnover ÷ total turnover) |
| ∟ close | string | false | Closing price |