# Get Company Executive Background

get_company_executive_background(code, leader_name=None)

  • Description

    Get the background profile of a specified executive for the given stock

  • Parameters

    Parameter Type Description
    code str Stock code
    leader_name str Executive name
  • Return

    Parameter Type Description
    ret RET_CODE API call result
    data dict When ret == RET_OK, returns executive background dict
    str When ret != RET_OK, returns error description
    • dict field description:

      Field Type Description
      brief_background str Executive background profile
  • Example

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

ret, data = quote_ctx.get_company_executive_background("US.AAPL", leader_name="Mr. Timothy D. Cook")
if ret == RET_OK:
    print(data)
else:
    print('error:', data)
quote_ctx.close()
1
2
3
4
5
6
7
8
9
  • Output
{'brief_background': "On April 20, 2026, Apple Inc. announced that Tim Cook will transition from his role as Chief Executive Officer to Executive Chair of Apple's Board of Directors, effective September 1, 2026. Mr. Cook, 65, has served as Apple's Chief Executive Officer since 2011, having previously served as Apple's Chief Operating Officer from October 2005. Mr. Cook joined Apple in March 1998 and served as Executive Vice President, Worldwide Sales and Operations from February 2002 to October 2005. From October 2000 to February 2002, Mr. Cook served as Senior Vice President, Worldwide Operations, Sales, Service and Support. From March 1998 to October 2000, Mr. Cook served as Senior Vice President, Worldwide Operations. Mr. Cook serves on the Board of Directors of The National Football Foundation & College Hall of Fame, Inc., the Board of Trustees of Duke University, and on the Leadership Council for the Malala Fund, an international non-profit organization that advocates for girls' education. Other Public Company Boards: Current: NIKE, Inc."}
1

API Limits

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