# 株主持株明細の取得

get_shareholders_holder_detail(code, request_type=None, next_key=None, num=None, sort_column=None, sort_type=None, period_id=None, holder_id=None)

  • 説明

    指定銘柄の指定保有者タイプの持株明細リストを取得します。ページネーションに対応しています

  • パラメータ

    パラメータ 説明
    code str 銘柄コード
    request_type HolderDetailType 保有者タイプ
    next_key str ページネーションキー
    num int 1ページあたりの件数
    sort_column SortField ソートフィールド
    sort_type SortType ソート方向
    period_id int 報告期 ID
    holder_id int 保有者 ID フィルター
  • 戻り値

    パラメータ 説明
    ret RET_CODE API呼び出し結果
    data pd.DataFrame ret == RET_OK の場合、持株明細の DataFrame を返します
    str ret != RET_OK の場合、エラーの説明を返します
    • DataFrame フィールド説明:

      フィールド 説明
      update_time_str str データ更新時刻
      next_key str ページネーションキー
      period_text str 報告期
      holder_id int 保有者 ID
      name str 保有者名
      holder_quantity int 保有株数合計
      holder_quantity_change int 持株変動数
      holder_pct float 持株比率
      holder_pct_change float 持株変動比率
      holding_date_str str 保有日付
      close_price float 保有日付の終値
      price_change_pct float 株価変動比率
      source_group_name str データソース
  • Example

from moomoo import *
quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)

ret, data = quote_ctx.get_shareholders_holder_detail("HK.00700", request_type=1000)
if ret == RET_OK:
    print(data[['period_text', 'name', 'holder_quantity', 'holder_pct', 'holder_pct_change']].to_string(index=False))
    print('next_key:', data.attrs.get('next_key', '-1'))
else:
    print('error:', data)
quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
  • Output
period_text                               name  holder_quantity  holder_pct  holder_pct_change
    2026/Q1               Prosus Ventures N.V.       2079512000      23.053             -0.285
    2026/Q1                         Huateng Ma        709859700       7.869              0.000
    2026/Q1                       The Vanguard        268596433       2.977              0.031
    2026/Q1                          BlackRock        240834898       2.669              0.088
    2026/Q1  Norges Bank Investment Management        122744699       1.360             -0.083
    2026/Q1                                FMR         86765121       0.961             -0.232
    2026/Q1                   Capital Research         85568118       0.948              0.024
    2026/Q1 J.P. Morgan Asset Management, Inc.         62437911       0.692             -0.025
    2026/Q1        E Fund Management Co., Ltd.         52722677       0.584              0.000
    2026/Q1                    Baillie Gifford         35674108       0.395              0.020
next_key: 10
1
2
3
4
5
6
7
8
9
10
11
12

API制限

  • 30秒以内に最大30回リクエスト可能。
  • 香港株、米国株の正株およびファンドに対応。
  • ページネーションに対応;デフォルトのページサイズは 10;ページネーションキーは文字列型。