# Get Shareholders Holder Detail

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)

  • Description

    Get the holder detail list for a stock under a specified holder type, with pagination support

  • Parameters

    Parameter Type Description
    code str Stock code
    request_type HolderDetailType Holder type
    next_key str Pagination key
    num int Page size
    sort_column SortField Sort field
    sort_type SortType Sort direction
    period_id int Reporting period ID
    holder_id int Holder ID filter
  • Return

    Parameter Type Description
    ret RET_CODE API call result
    data pd.DataFrame When ret == RET_OK, returns holder detail DataFrame
    str When ret != RET_OK, returns error description
    • DataFrame field descriptions:

      Field Type Description
      update_time_str str Data update time
      next_key str Pagination key
      period_text str Reporting period
      holder_id int Holder ID
      name str Holder name
      holder_quantity int Total shares held
      holder_quantity_change int Share change number
      holder_pct float Holding percentage
      holder_pct_change float Holding change ratio
      holding_date_str str Holding date
      close_price float Closing price on holding date
      price_change_pct float Price change percentage
      source_group_name str Data source
  • Example

from futu 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

Interface Limits

  • Max 30 requests per 30 seconds.
  • Supports HK stocks, US stocks and funds.
  • Supports pagination; default page size is 10; pagination key is of string type.