# Key executives (Useful) The key executives endpoint provides detailed information about a company's key executives identified by a specific stock symbol. It returns data such as names, titles, and roles of the executives, which can be useful for understanding the leadership structure of the company. **API credits cost:** `1000` per symbol > **Note:** This API endpoint is available starting with the [Ultra](https://twelvedata.com/pricing) plan. ## Parameters - `symbol` (string, optional, see notes) Symbol ticker of instrument. For preffered stocks use dot(.) delimiter. E.g. `BRK.A` or `BRK.B` will be correct - `figi` (string, optional, see notes) Filter by financial instrument global identifier (FIGI). This request parameter is available starting with the Ultra plan - `isin` (string, optional, see notes) Filter by international securities identification number (ISIN). ISIN access is activating in the Data add-ons section - `cusip` (string, optional, see notes) The CUSIP of an instrument for which data is requested. CUSIP access is activating in the Data add-ons section - `exchange` (string, optional) Exchange where instrument is traded - `mic_code` (string, optional) Market Identifier Code (MIC) under ISO 10383 standard - `country` (string, optional) Country where instrument is traded, e.g., `United States` or `US` **Notes:** - At least one of the following parameters is required: `symbol`, `figi`, `isin`, `cusip`. ## Response - `meta` (object) Meta information about the instrument - `symbol` (string) Ticker symbol of instrument - `name` (string) Name of the company - `currency` (string) Currency code in which the instrument is denominated - `exchange` (string) Exchange where instrument is traded - `mic_code` (string) Market identifier code (MIC) under ISO 10383 standard - `exchange_timezone` (string) Timezone of the exchange - `key_executives` (array of object) List of key executives - `name` (string) Full name of an executive, including first name, middle name, last name, and suffix - `title` (string) Refers to job title - `age` (integer) Current age of an executive if available - `year_born` (integer) Year of birth of an executive if available - `pay` (integer) Total salary of an executive if available ## Example Request ```bash curl "https://api.twelvedata.com/key_executives?symbol=AAPL&apikey=demo" ``` ## Example Response ```json { "meta": { "symbol": "AAPL", "name": "Apple Inc", "currency": "USD", "exchange": "NASDAQ", "mic_code": "XNAS", "exchange_timezone": "America/New_York" }, "key_executives": [ { "name": "Mr. Timothy D. Cook", "title": "CEO & Director", "age": 59, "year_born": 1961, "pay": 14769259 } ] } ```