# 会社概要の取得

get_company_profile(code)

  • 説明

    指定した銘柄の会社概要タグリストを取得します。テキスト、リンク、セクション見出しなどの情報が含まれます

  • パラメータ

    パラメータ 説明
    code str 銘柄コード
  • 戻り値

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

      フィールド 説明
      name str タグ名
      value str タグの内容
      field_type CompanyProfileFieldType タグ種別
  • Example

from moomoo import *
import pandas as pd
quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)
ret, data = quote_ctx.get_company_profile("HK.00700")
if ret == RET_OK:
    print(data.to_string(index=False))
else:
    print('error:', data)
quote_ctx.close()
1
2
3
4
5
6
7
8
9
  • Output
field_type  name                                 value
0           Symbol                               00700
0           Company Name                         TENCENT
0           ISIN                                 KYG875721634
0           Listing Date                         Jun 16, 2004
0           Issue Price                          3.70
0           Shares Offered                       420.16M share(s)
0           Founded                              Nov 23, 1999
0           Registered Address                   Cayman Islands
0           Chairman                             huateng ma
0           Audit Institution                    PwC
0           Company Category                     Overseas registratio ...
0           Registered Office                    Cricket Square, ...
0           Head Office and ...                  29th Floor, Tower 3,...
0           Fiscal Year Ends                     12-31
0           Employees                            115849
0           Market                               Hong Kong motherboard
0           Phone                                (852) 2179-5122
0           Fax                                  (852) 2520-1148
0           Email                                ir@tencent.com
1           Website                              http://www.tencent.com
2           Business                             Tencent Holdings Ltd is...
2           Description                          Tencent leverages ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

API制限

  • 30秒以内に最大30回のリクエストが可能です。
  • 個別株および投資信託に対応しています。