Directors & Board Members Data With Python
This page provides ready-to-execute Python examples to access directors and board members data of publicly listed companies. The examples demonstrate how to find all current and historical directors and board members of a company, access director names, position, age, class, date of first election, independence status, committee membership, qualifications, and more.
Quick Start
This example demonstrates how to use the Directors & Board Members API with the sec-api
Python package. The DirectorsBoardMembersApi
class offers a straightforward interface for retrieving information about directors and board members through the .get_data(search_parameters)
method.
pip install sec-api
import pandas as pd
from sec_api import DirectorsBoardMembersApi
directorsBoardMembersApi = DirectorsBoardMembersApi(
api_key="YOUR_API_KEY",
)
search_params = {
"query": "ticker:AMZN",
"from": 0,
"size": 50,
"sort": [{"filedAt": {"order": "desc"}}],
}
response = directorsBoardMembersApi.get_data(search_params)
amzn_data = pd.DataFrame(response["data"])
amzn_data = amzn_data.explode("directors")
columns = [
'name',
'position',
'age',
'directorClass',
'dateFirstElected',
'isIndependent',
'committeeMemberships',
'qualificationsAndExperience',
]
for column in columns:
amzn_data[column] = amzn_data["directors"].apply(lambda x: x.get(column))
amzn_data[['filedAt', *columns]].head(10)
Out:
filedAt | name | position | age | directorClass | dateFirstElected | isIndependent | committeeMemberships | qualificationsAndExperience | |
---|---|---|---|---|---|---|---|---|---|
0 | 2024-04-10T18:14:29-04:00 | Andrew R. Jassy | President and CEO of Amazon | 56 | July 2021 | None | [] | [Human Capital Management, Global Business & O... | |
0 | 2024-04-10T18:14:29-04:00 | Andrew Y. Ng | Managing General Partner, AI Fund LP | 47 | I | April 2024 | None | [Leadership Development and Compensation] | [Global leader in AI and education, Expert in ... |
0 | 2024-04-10T18:14:29-04:00 | Brad D. Smith | President of Marshall University | 60 | I | September 2023 | None | [Audit] | [19 years of senior executive leadership exper... |
0 | 2024-04-10T18:14:29-04:00 | Daniel P. Huttenlocher | Dean of MIT Schwarzman College of Computing | 65 | September 2016 | None | [Leadership Development and Compensation Secur... | [Human Capital Management, Risk Management, Co... | |
0 | 2024-04-10T18:14:29-04:00 | Edith W. Cooper | Co-Founder of Medley Living, Inc. and Former E... | 62 | September 2021 | None | [Leadership Development and Compensation] | [Human Capital Management, Global Business & O... | |
0 | 2024-04-10T18:14:29-04:00 | General (Ret.) Keith B. Alexander | Former CEO, President, and Chair | 72 | September 2020 | None | [Security (Chair)] | [Human Capital Management, Global Business & O... | |
0 | 2024-04-10T18:14:29-04:00 | Indra K. Nooyi | Director | 68 | III | February 2019 | True | [Audit] | [Human Capital Management, Global Business & O... |
0 | 2024-04-10T18:14:29-04:00 | Jamie S. Gorelick | Partner with Wilmer Cutler Pickering Hale and ... | 73 | February 2012 | None | [Nominating and Corporate Governance] | [Human Capital Management, Public Company Exec... | |
0 | 2024-04-10T18:14:29-04:00 | Jeffrey P. Bezos | Founder and Executive Chair | 60 | July 1994 | None | [] | [Human Capital Management, Global Business & O... | |
0 | 2024-04-10T18:14:29-04:00 | Jonathan J. Rubinstein | Director | 67 | December 2010 | None | [Nominating and Corporate Governance (Chair), ... | [Former co-CEO of Bridgewater Associates, Expe... |