Get key executives
GET
/api/v1/public/companies/:ticker/executives1 credit / callAPI key required
Get key executives and officers for a company.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/companies/AAPL/executives' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/companies/AAPL/executivesexample · 200
{
"data": {
"ticker": "AAPL",
"executives": [
{
"title": "Senior Vice President & Chief Financial Officer",
"name": "Kevan Parekh",
"pay": 4034174,
"currencyPay": "USD",
"gender": "male",
"yearBorn": 1972,
"titleSince": null,
"active": true
},
{
"title": "Senior Vice President of Worldwide Marketing",
"name": "Greg Joswiak",
"pay": null,
"currencyPay": "USD",
"gender": "male",
"yearBorn": null,
"titleSince": null,
"active": true
},
{
"title": "Vice President of Worldwide Communications",
"name": "Kristin Huguet Quayle",
"pay": null,
"currencyPay": "USD",
"gender": "female",
"yearBorn": null,
"titleSince": null,
"active": true
}
]
}
}