latestOpenAPI 3.0.02026-08-2010141507.9 KB

3d5897270d8a

Executives

Executive Officers

Stock Pro

Returns the company's current executive officers (the CEO plus other executive officers active within roughly the last 18 months).

Data source: SEC Form 3/4/5 insider filings, which carry each officer's name, title, and filing dates. firstSeen and lastSeen are the first and most recent SEC filing in which the officer appeared, not necessarily their tenure start or end; lastSeen is an activity signal, so an officer who stops filing for an extended period drops off the list. Foreign private issuers are exempt from these filings and may return no officers.

get/api/executives/officers

Query parameters

symbolstring

Stock ticker symbol. Identify the entity by exactly one of: symbol, cik, cusip, composite_figi, or share_class_figi. At least one is required.

cikinteger

SEC Central Index Key (CIK).

cusipstring

CUSIP identifier (9 characters).

composite_figistring

Composite OpenFIGI identifier.

share_class_figistring

Share-class OpenFIGI identifier.

Response

List of executive officers

namestring

Officer name in "First Last" display form

role'ceo' | 'ceo-divisional' | 'officer'

Derived from the SEC title. ceo = the company's principal executive officer; ceo-divisional = a CEO of a business unit or subsidiary (e.g. "CEO Amazon Web Services", "Co-CEO CIB"), surfaced separately so it is not mistaken for the principal CEO; officer = any other executive officer. A company may show more than one ceo across a transition or with genuine co-CEOs.

titlestring nullable

Officer title as disclosed on SEC Form 3/4/5 insider filings; null if not disclosed

firstSeenstring

Earliest SEC filing date where this officer appeared (YYYY-MM-DD)

lastSeenstring

Most recent SEC filing date where this officer appeared (YYYY-MM-DD)

Example response

[
  {
    "name": "Satya Nadella",
    "role": "ceo",
    "title": "Chief Executive Officer",
    "firstSeen": "2021-05-10",
    "lastSeen": "2025-11-12"
  }
]