Merger & Acquisition Dataset API
This API endpoint allows users to access real-time and historical Mergers & Acquisition (M&A) and divestment deals data. Users can search data by various parameters- dateType
,startDate
,endDate
,date
,acquiringCompanyDomain
,acquiringCompanyName
,acquiringCompanyIndustry
,acquiredCompanyLocation
,acquiringCompanyType
,acquiredCompanyDomain
,acquiredCompanyName
,acquiredCompanyIndustry
,acquiredCompanyLocation
,acquiredCompanyType
,sellingCompanyDomain
,sellingCompanyName
,sellingCompanyIndustry
,sellingCompanyLocation
,sellingCompanyType
,dealAmount
,mnaStatus
and mnaType
. 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'.
ANNOUNCED
Possible values: The start date(YYYY-MM-DD) from which M&A deals data is needed. The data in the Intellizence M&A Dataset is available starting from 2020-01-01.
2025-02-24
The end date(YYYY-MM-DD) up to which M&A deals data is needed.
2025-02-24
Specific date(YYYY-MM-DD) for which the M&A deals data is needed.
2025-02-24
The name of the acquiring company for which the M&A deals data is needed. Partial name matches are supported.
Blackstone
The website domain of the acquiring company for which the M&A deals data is needed. Partial matches are supported.
www.blackstone.com
The industry of the acquiring companies for which M&A deals data is needed.
financial services
Possible values: The HeadQuarters location of the acquiring companies for which M&A deals data is needed. The location can be City or State/Province or Country.
New York City,New York,United States of America
The company type of the acquiring companies for which M&A deals data is needed.
Public
Possible values: The name of the acquired company for which the M&A deals data is needed. Partial name matches are supported.
Safe Harbor Marinas
The website domain of the acquired company for which the M&A deals data is needed. Partial matches are supported.
www.shmarinas.com
The industry of the acquired companies for which M&A deals data is needed.
shipping & ports
Possible values: The HeadQuarters location of the acquired companies for which M&A deals data is needed. The location can be City or State/Province or Country.
Fontana,California,United States of America
The company type of the acquired companies for which M&A deals data is needed.
Private
Possible values: The name of the selling company for which the M&A deals data is needed. Partial matches are supported.
Sun Communities
The website domain of the selling company for which the M&A deals data is needed. Partial matches are supported.
www.suncommunities.com
The industry of the selling companies for which M&A deals data is needed.
real estate
Possible values: The HeadQuarters location of the selling companies for which M&A deals data is needed. The location can be City or State/Province or Country.
Southfield,Michigan,United States of America
The company type of the selling companies for which M&A deals data is needed.
Public
Possible values: Filter M&A deals data based on M&A status. The common status are Announced, Completed and Terminated.
Announced
Possible values: Filter M&A deals data by M&A Type.
Acquisition - Total
Possible values: Filter the M&A deals data by deal amount. Pass the currency
whenver dealAmount
is used. If currency
is not provided along with dealAmount
, all the records that matches the deal amount of any currency will be returned. The allowed operators are >, >=, <, <=,=,!=, (MinimumValue),(Maximum Value). Examples: >1000000, >=1000000, <1000000, <=1000000,=1000000,!=1000000, 1000000,400000
=5650000000
Pattern: ^(>|>=|<|<=|=|!=)?\d+(,\d+)?$
The currency of the deal transaction.
USD
Possible values: The maximum number of records to be returned.
100
POST /api/v2/dataset/mna HTTP/1.1
Host: api.intellizence.com
x-api-key: text
Content-Type: application/json
Accept: */*
Content-Length: 908
{
"dateType": "ANNOUNCED",
"startDate": "2025-02-24",
"endDate": "2025-02-24",
"date": "2025-02-24",
"acquiringCompanyName": "Blackstone",
"acquiringCompanyDomain": "www.blackstone.com",
"acquiringCompanyIndustry": "financial services",
"acquiringCompanyLocation": "New York City,New York,United States of America",
"acquiringCompanyType": "Public",
"acquiredCompanyName": "Safe Harbor Marinas",
"acquiredCompanyDomain": "www.shmarinas.com",
"acquiredCompanyIndustry": "shipping & ports",
"acquiredCompanyLocation": "Fontana,California,United States of America",
"acquiredCompanyType": "Private",
"sellingCompanyName": "Sun Communities",
"sellingCompanyDomain": "www.suncommunities.com",
"sellingCompanyIndustry": "real estate",
"sellingCompanyLocation": "Southfield,Michigan,United States of America",
"sellingCompanyType": "Public",
"mnaStatus": "Announced",
"mnaType": "Acquisition - Total",
"dealAmount": "=5650000000",
"currency": "USD",
"limit": 100
}
{
"announcedDate": "2025-02-24",
"acquiringCompany": {
"name": "Blackstone",
"domain": "www.blackstone.com",
"industries": [
"angels/ venture capital/ private equity,financial services"
],
"location": "New York City,New York,United States of America",
"ticker": [
"BX"
],
"type": "Private"
},
"acquiredCompany": {
"name": "Safe Harbor Marinas",
"domain": "www.shmarinas.com",
"industries": [
"shipping & ports"
],
"location": "Fontana,California,United States of America",
"ticker": [],
"type": "Private"
},
"sellingCompany": {
"name": "Sun Communities",
"domain": "www.suncommunities.com",
"industries": [
"real estate"
],
"location": "Southfield,Michigan,United States of America",
"ticker": [
"SUI"
],
"type": "Public"
},
"mnaType": "Acquisition - Total",
"mnaStatus": "Announced",
"dealAmount": "=5650000000",
"currency": "USD",
"lastModified": "2025-02-25",
"url": "text",
"title": "text"
}
Last updated