Skip to content

股東明細

GET /v1/quote/{symbol}/f10/holder-detail

獲取指定股票的股東持股明細列表,支持按持有人類型 / 報告期 / 股東 ID 過濾,並按持股數量或變動數排序。

請求參數

參數類型位置必填說明
symbolstring路徑證券代碼,如 HK.00700
request_typeint查詢持有人類型過濾。預設 1000(全部)。詳見命名詞典
period_idint查詢報告期 ID 過濾。預設 0(最新)。
holder_idint查詢按股東 ID 過濾。預設 0(不過濾)。
sort_columnint查詢排序列。預設 6161=持股數量,62=持股變動數。
sort_typeint查詢排序方向。0=降序(預設),1=升序。
limitint查詢每頁條數。預設 10,最大 50
next_keystring查詢翻頁游標,首頁留空。

請求示例

bash
curl "$ip/v1/quote/HK.00700/f10/holder-detail?limit=2" | jq

響應字段

字段類型說明
period_textstring報告期(YYYY/QN)。
holder_idint股東 ID。
namestring股東名稱。
holder_quantityint持股數量(股)。
holder_quantity_changeint持股數量環比變動(股)。
holder_pctfloat持股比例(%)。
holder_pct_changefloat持股比例環比變動(%)。
holding_dateint持股日期(毫秒時間戳)。
holding_date_strstring持股日期(YYYY-MM-DD)。
close_pricefloat當期收盤價。
price_change_pctfloat價格變動百分比(%)。
source_group_namestring數據來源。
update_timeint數據更新時間(毫秒時間戳)。
update_time_strstring數據更新時間字串。

限制範圍

  • 支持市場:HK / US / SG / JP / CA / AU 正股。
  • 不支持:SH / SZ(A 股)及 ETF / 指數 / 窩輪 / 期權 / 期貨等。

錯誤碼

ret_codeerror.code觸發條件處理建議
0成功
-3invalid_parameter參數類型錯 / 越界 / 枚舉非法校正後重試
-7invalid_symbolsymbol 解析不到證券通過搜索確認代碼合法性
-10no_data合法請求但無股東明細確認標的/過濾條件在支持範圍
-2 / -4 / -6internal_error網關內部錯誤稍後重試,持續失敗聯繫支持

響應示例

json
{
  "ret_code": 0,
  "ret_msg": "success",
  "data": {
    "holders": [
      {
        "period_text": "2026/Q2",
        "holder_id": 337488017,
        "name": "Prosus Ventures N.V.",
        "holder_quantity": 2079512000,
        "holder_quantity_change": 0,
        "holder_pct": 23.087,
        "holder_pct_change": 0,
        "holding_date": 1767110400000,
        "holding_date_str": "2025-12-31",
        "close_price": 491.3,
        "price_change_pct": 2.6321,
        "source_group_name": "Annual Report",
        "update_time": 1780677957000,
        "update_time_str": "2026-06-06 00:45:57"
      }
    ]
  },
  "pagination": { "has_more": true, "next_key": "2" }
}