CXO Appointments and Changes Dataset API
This API endpoint allows users to access real-time and historical C-Suite Changes dataset. Users can search data using various parameters- dateType
,startDate
,endDate
,date
,companyDomain
,companyName
,companyIndustry
,companyLocation
,companyType
,companyTicker
,executiveName
,executiveTitle
,executiveTitleCategory
, and reason
. Users can limit the number of records returned using the limit
parameter. All the parameters are optional. The API key has to be passed in HTTP header with the name x-api-key
.
Intellizence API key for authenticating the request.
Choose the date type used to filter records.The default value is 'ANNOUNCED'. To get the daily update of records created or modified, 'LAST-MODIFIED' is recommended.
ANNOUNCED
Possible values: The start date (YYYY-MM-DD) from which C-Suite changes data is needed. The Intellizence C-Suite Changes Dataset contains data from 2021-01-01.
2025-05-03
The end date (YYYY-MM-DD) up to which C-Suite changes data is needed.
2025-05-03
Exact date (YYYY-MM-DD) for which the C-Suite changes data is needed.
2025-05-03
The name(s) of the company for which the C-Suite changes data is needed. Partial name matches are supported. Multiple values can be provided either as a comma-separated string or as an array.
Berkshire Hathaway
The website domain(s) of the company for which the C-Suite changes data is needed. Partial website domain matches are supported. Multiple values can be provided either as a comma-separated string or as an array.
www.berkshirehathaway.com
The industry or industries of companies for which C-Suite changes data is needed. The industries are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided as an array.
conglomerate
Possible values: The location of the company headquarters for which C-Suite changes data is needed. The location can be city or state/province or country. Multiple values can be provided either as a comma-separated string or as an array.
Omaha,Nebraska,United States of America
The type of company for which C-Suite changes data is needed. The company types are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided either as a comma-separated string or as an array.
Public
Possible values: Company Ticker if it's a public company.Multiple values can be provided either as a comma-separated string or as an array.
BRK.A
Name of the C-Level executive whose role is changed. Multiple values can be provided either as a comma-separated string or as an array.
Greg Abel
Title of the C-Level executive whose role is changed. Multiple values can be provided either as a comma-separated string or as an array.
Chief Executive Officer
Title category of the C-Level executive whose role is changed. The title categories are pre-defined by Intellizence and only the values listed below will be accepted. Multiple values can be provided either as a comma-separated string or as an array.
Chief Executive Officer ( CEO)/President/Managing Director
Possible values: The reason for the executive change.
Promoted/Role Change
Possible values: The maximum number of records to be returned.
1
POST /api/v2/dataset/executive-change HTTP/1.1
Host: api.intellizence.com
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 510
{
"dateType": "ANNOUNCED",
"startDate": "2025-05-03",
"endDate": "2025-05-03",
"date": "2025-05-03",
"companyName": "Berkshire Hathaway",
"companyDomain": "www.berkshirehathaway.com",
"companyIndustry": "conglomerate",
"companyLocation": "Omaha,Nebraska,United States of America",
"companyType": "Public",
"companyTicker": "BRK.A",
"executiveName": "Greg Abel",
"executiveTitle": "Chief Executive Officer",
"executiveTitleCategory": "Chief Executive Officer ( CEO)/President/Managing Director",
"reason": "Promoted/Role Change",
"limit": 1
}
{
"id": "68181c31798794a88a9e8122",
"announcedDate": "2025-05-03",
"company": {
"name": "Berkshire Hathaway",
"domain": "www.berkshirehathaway.com",
"industries": [
"insurance",
"conglomerate"
],
"location": "Omaha,Nebraska,United States of America",
"type": "Public",
"ticker": "BRK.A"
},
"executiveName": "Greg Abel",
"executiveTitle": "Chief Executive Officer",
"executiveTitleCategory": "Chief Executive Officer ( CEO)/President/Managing Director",
"reason": "Promoted/Role Change",
"effectiveDate": "2026-01-01",
"lastModified": "2025-05-05",
"title": "Buffett to step down as Berkshire CEO after 60 years at helm, passes baton to Abel",
"url": "https://www.reuters.com/markets/wealth/berkshire-shareholders-head-buffetts-60th-annual-meeting-economy-top-mind-2025-05-03/#:~:text=OMAHA%2C%20Nebraska%2C%20May%203%20(,to%20Vice%20Chairman%20Greg%20Abel"
}
Last updated