Merger & Acquisition Dataset API

POST /api/v1/dataset/mna

Request Body

{
    "startDate": "start_date",
    "endDate": "end_date",
    "companyIds": "company_ids",
    "industries": "industries",
    "mnaStatuses": "mnaStatuses",
    "acquisitionTypes": "acquisitionTypes",
    "location": "location",
    "amount": "amount",
    "limit": "limit"
}

Param

Mandatory

Description

startDate

N

It will return records from Start Date (Last Modified Date) in format DD/MM/YYYY.

endDate

N

It will return records till End Date (Last Modified Date) in format DD/MM/YYYY.

companyIds

N

Array of Intellizence Company IDs. It will return records for these Company IDs. If Company IDs is not passed, records for all the tracked companies will be returned.

industries

N

Array of Industries.

mnaStatuses

N

Array of M&A Status.

acquisitionTypes

N

Array of Acquisition Types.

location

N

Company Headquarter Location.

amount

N

Records with Deal Amount greater than or equal to this amount will be returned.

limit

N

Default value is 100 records. If Start Date and End Date are not passed, it will return latest 'N' records depending on limit value.

Response Body

[
    {
        "id": "620a269c040f99079b259700",
        "announcedDate": "02/08/2020",
        "acquiredCompany": {
            "id": "IN004644",
            "name": "Speedway",
            "domain": "www.speedway.com",
            "industries": [
                "retail"
            ],
            "location": "Elyria,Ohio,United States of America",
            "ticker": [],
            "stockExchange": null,
            "type": "Private"
        },
        "acquiringCompany": {
            "id": "IN004612",
            "name": "7-Eleven",
            "domain": "www.7-eleven.com",
            "industries": [
                "retail"
            ],
            "location": "Dallas,Texas,United States of America",
            "ticker": [],
            "stockExchange": null,
            "type": "Private"
        },
        "dealAmount": 21000000000,
        "currency": "USD",
        "typeOfAcquisition": "Acquisition - Total",
        "mnaStatus": "Announced ",
        "sellingCompanyName": "Marathon Petroleum",
        "url": "https://www.prnewswire.com:443/news-releases/7-eleven-inc-transforms-its-us-store-network-through-acquisition-of-speedway-301104406.html",
        "title": "7-Eleven, Inc. Transforms its U.S. Store Network Through Acquisition of Speedway",
        "lastModified": "03/08/2020"
    }
]

Check out Intellizence Merger & Acquisition ( M&A) Dataset - Data Dictionary to learn about the data fields and values.

Last updated