# Get Institution Profile

get_institution_profile(market, institution_id)

  • Description

    Get institution profile, returning the specified institution's position value, position change statistics, Top10 holding percentage, and other profile data.

  • Parameters

    Parameter Type Description
    market Market Market type (HK/US) (required)
    institution_id int Institution ID (from get_institution_list) (required)
  • Return

    Parameter Type Description
    ret RET_CODE API call result
    data dict When ret == RET_OK, returns dictionary data
    str When ret != RET_OK, returns error description
    • Data format:
      Field Type Description
      institution_name str Institution name
      description str Institution description
      position_value float Position value
      last_position_value float Previous period position value
      position_value_change_pct float Value change percentage (%)
      total_holding_count int Total holding count
      holding_change_count int Holding change count
      new_count int New position count
      sold_out_count int Sold out count
      increase_count int Increase count
      decrease_count int Decrease count
      top10_pct float Top10 holding percentage (%)
      top10_pct_change float Top10 percentage change (%)
      disclosure_date str Disclosure date (yyyy-MM-dd)
      currency str Currency
  • Example

from futu import *

quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)

# First get institution ID
ret, data, _, _ = quote_ctx.get_institution_list(market=Market.US, count=1)
if ret == RET_OK and len(data) > 0:
    inst_id = data.iloc[0]['institution_id']

    # Query institution profile
    ret, profile = quote_ctx.get_institution_profile(market=Market.US, institution_id=inst_id)
    if ret == RET_OK:
        for k, v in profile.items():
            print(f"{k}: {v}")
    else:
        print('error:', profile)

quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  • Output
institution_name: 贝莱德
description: 贝莱德集团是美国规模最大的资产管理集团之一,提供种类繁多的证券、固定收益、现金管理等投资产品。
position_value: 6959192681765.731
last_position_value: 6093992885377.756
position_value_change_pct: 14.1975
total_holding_count: 4443
holding_change_count: 12
new_count: 87
sold_out_count: 31
increase_count: 2364
decrease_count: 1682
top10_pct: 24.3287
top10_pct_change: 0.4142
disclosure_date: 2026-06-19
currency: USD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

API Limits

  • Maximum 60 requests within 30 seconds
  • Only the first page of paginated requests counts towards rate limiting