# 獲取機構概況

get_institution_profile(market, institution_id)

  • 介紹

    獲取機構概況,返回指定機構的持倉市值、持倉變動統計、Top10 持股佔比等畫像數據。

  • 參數

    參數 類型 說明
    market Market 市場類型(HK/US)(必填)
    institution_id int 機構 ID(從 get_institution_list 獲取)(必填)
  • 返回

    參數 類型 說明
    ret RET_CODE 接口調用結果
    data dict 當 ret == RET_OK,返回字典數據
    str 當 ret != RET_OK,返回錯誤描述
    • 數據格式如下:
      字段 類型 說明
      institution_name str 機構名稱
      description str 機構簡介
      position_value float 持倉市值
      last_position_value float 上期持倉市值
      position_value_change_pct float 市值變化比例(%)
      total_holding_count int 總持倉數
      holding_change_count int 持倉變動數
      new_count int 建倉標的數
      sold_out_count int 清倉標的數
      increase_count int 增持標的數
      decrease_count int 減持標的數
      top10_pct float Top10 持股佔比(%)
      top10_pct_change float Top10 佔比變動(%)
      disclosure_date str 披露日期(yyyy-MM-dd)
      currency str 幣種
  • Example

from futu import *

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

# 先獲取機構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']

    # 查詢機構概況
    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

接口限制

  • 30 秒內最多 60 次請求
  • 分頁請求僅首頁計入限頻統計