# Get Company Profile

get_company_profile(code)

  • Description

    Get the company profile tag list for the specified stock, including text fields, hyperlinks, and section titles

  • Parameters

    Parameter Type Description
    code str Stock code
  • Return

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

      Field Type Description
      name str Tag name
      value str Tag content
      field_type CompanyProfileFieldType Tag type
  • Example

from futu 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
10
  • 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 Limits

  • Max 30 requests per 30 seconds.
  • Supports equities and funds.