Skip to content

每日卖空成交

GET /v1/quote/{symbol}/short-selling/daily-short-volume

获取港股 / 美股标的的每日卖空交易数据,按数据时间从新到旧排序。港股为成交维度,美股为持仓维度。

请求参数

参数类型位置必填说明
symbolstring路径标的代码,如 HK.00700US.AAPL
countint查询返回条数。默认 30,最大 90

请求示例

bash
curl "$ip/v1/quote/HK.00700/short-selling/daily-short-volume?count=2" | jq

响应字段

港股 items 字段:

字段类型说明
timestampint数据时间(毫秒时间戳)。
timestamp_strstring数据日期(yyyy-MM-dd)。
shares_tradedint当日总成交股数。
turnoverfloat当日成交额(港币)。
short_sell_shares_tradedint当日卖空股数。
short_sell_turnoverfloat当日卖空成交额(港币)。
open_pricefloat开盘价。
close_pricefloat收盘价。
last_close_pricefloat上一交易日收盘价。
daily_trade_avg_ratiofloat当日成交均比(%)。

港股 data 级附加字段:

字段类型说明
marketstring市场标识,固定 HK
aggregated_shortint累计空头持仓股数。
aggregated_short_ratiofloat累计空头占流通股比例(%)。
new_timestring数据更新时间(dd/MM/yyyy)。

美股 items 字段:

字段类型说明
timestampint数据时间(毫秒时间戳)。
timestamp_strstring数据日期(yyyy-MM-dd)。
total_shares_shortint当日总卖空股数。
nasdaq_shares_shortint纳斯达克卖空股数。
nyse_shares_shortint纽交所卖空股数。
short_percentfloat卖空占比(%)。
volumeint成交量。
close_pricefloat收盘价。
last_close_pricefloat上一交易日收盘价。
daily_trade_avg_ratiofloat当日成交均比(%)。

限制范围

  • 市场:仅港股(HK)、美股(US)。其它市场不支持。
  • 品类:仅可卖空证券(正股、ETF、REIT 等)。期权、期货、窝轮、指数等不支持。
  • 非指定可卖空证券返回 no_data。

错误码

ret_codeerror.code触发条件处理建议
0成功
-3invalid_parametercount 越界 / symbol 格式非法校正参数后重试
-7invalid_symbolsymbol 无法解析为证券检查标的代码
-8unsupported市场或品类不支持仅对港美可卖空证券调用
-10no_data标的无卖空数据视为该标的当前无卖空数据

响应示例

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "market": "HK",
    "aggregated_short": 46242547,
    "aggregated_short_ratio": 0.5,
    "new_time": "29/05/2026",
    "items": [
      {
        "timestamp": 1780588800000,
        "timestamp_str": "2026-06-05",
        "shares_traded": 31649780,
        "turnover": 14465428854.749,
        "short_sell_shares_traded": 4660100,
        "short_sell_turnover": 2135963680,
        "open_price": 461.6,
        "close_price": 453.2,
        "last_close_price": 459,
        "daily_trade_avg_ratio": 10.51
      }
    ]
  }
}