做空数据
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.
SDK Links
Parameters
SDK 方法参数。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | US security symbol, e.g. TSLA.US, AAPL.US |
| count | integer | NO | Number 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
| Status | Description | Schema |
|---|---|---|
| 200 | Success | short_positions_rsp |
| 400 | Bad request | None |
Schemas
short_positions_rsp
| Name | Type | Required | Description |
|---|---|---|---|
| list | object[] | true | Short position records |
| ∟ date | string | true | Settlement date in YYYY-MM-DD format |
| ∟ rate | string | true | Short ratio (short shares ÷ float) |
| ∟ short_shares | string | true | Number of short shares |
| ∟ avg_daily_vol | string | true | Average daily volume |
| ∟ days_cover | string | true | Days-to-cover ratio (short shares ÷ avg daily vol) |
| ∟ close | string | true | Closing price on that date |

