# Get Company Executives

get_company_executives(code)

  • Description

    Get the list of directors and executives for the specified stock, including display name, name, position, start date, publish date, gender, age, education, and annual salary

  • 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 executives DataFrame
    str When ret != RET_OK, returns error description
    • DataFrame field description:

      Field Type Description
      display_leader_name str Display name
      leader_name str Executive name
      position_name str Position name
      begin_date int Start date timestamp (seconds)
      begin_date_str str Start date
      leader_gender str Gender
      leader_age str Age
      highest_education str Highest education level
      annual_salary int Annual salary
      issue_date int Publish date timestamp (seconds)
      issue_date_str str Publish date
  • Example

from futu import *
quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)

ret, data = quote_ctx.get_company_executives("US.AAPL")
if ret == RET_OK:
    print(data[['display_leader_name', 'position_name', 'begin_date_str', 'annual_salary']].to_string(index=False))
    print('count:', len(data))
else:
    print('error:', data)
quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
  • Output
display_leader_name                                                          position_name  begin_date_str  annual_salary
            Timothy D. Cook                                   Director and Chief Executive Officer             NaN     74294811.0
                 Sabih Khan                                                Chief Operating Officer             NaN     27031671.0
               Kevan Parekh                      Chief Financial Officer and Senior Vice President             NaN     22467309.0
                Ben Borders Principal Accounting Officer and Senior Director, Corporate Accounting             NaN            NaN
         Katherine L. Adams                                                  Senior Vice President             NaN     27032248.0
            Deirdre O'Brien                               Senior Vice President, Retail and People             NaN     27047633.0
       Jennifer G. Newstead                   Senior Vice President, General Counsel and Secretary             NaN            NaN
                John Ternus                            Senior Vice President, Hardware Engineering             NaN            NaN
Dr. Arthur D. Levinson, PhD                                                  Chairman of the Board             NaN       557231.0
            Susan L. Wagner                                                   Independent Director             NaN       445373.0
           Monica C. Lozano                                                   Independent Director             NaN       412956.0
                Andrea Jung                                                   Independent Director             NaN       458020.0
                Alex Gorsky                                                   Independent Director             NaN       416492.0
   Dr. Wanda M. Austin, PhD                                                   Independent Director             NaN       412850.0
        Dr. Ronald D. Sugar                                                   Independent Director             NaN       471283.0
count: 15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

API Limits

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