Dun & Bradstreet

Company rest API

Merger

The API returns company's merger processes in JSON format, as specified by business id or duns number.

In order to use the API you must have the valid environment-specific username and password. Before any API requests, you need to obtain an API KEY. You will get a valid API KEY (it's called a ticket) by using the ticket API (Please, read how to use ticket API instructions).

The API KEY must be sent in the request custom header element (named ticket or x-api-key). If the API KEY value is valid then API request will be successful (http status code 200), otherwise it will fail (http status code 401). All API requests must be made over HTTPS.

API endpoints

  • https://api.bisnode.fi/company/info/v3/merger - production environment
  • https://api-test.bisnode.fi/company/info/v3/merger - test environment


API request parameters

Parameter Description  
id Business id or duns number X
X = Mandatory

GET https://api-test.bisnode.fi/company/info/v3/merger/{id}

API response

Element Description
businessId The company's business id. e.g. 2014838-7
dunsNumber The company's duns number. e.g. 539506084
mergers Merger processes the company id is involved in
mergerId Id of the merger process
matterType Matter type of the merger process. For descriptions see v3/codeset API endpoint= "merger",field="matterType"
companyRole Role of the company in merger process. For descriptions see v3/codeset API endpoint= "merger",field="companyRole"
status Status of the process ("plan", "enforcement" or "abort")
statusDate Date of status
planRegistrationDate Registration date of the process plan
abortRegistrationDate Registration date of the process abort
enforcementRegistrationDate Registration date of the process enforcement
publicNoticeToCreditorsDate Public notice to creditors date
publicNoticeDeadlineDate Public notice deadline date
acquiringCompany The acquiring company of the merger process
mergingCompanies The merging companies of the merger process
companyName Name of the company in merger process

API request and response example

curl 'https://api-test.bisnode.fi/company/info/v3/merger/9874145-2' -H 'x-api-key: 1234567890ABC'

Successful request and the API return results in JSON format.

{
"businessId": "9874145-2",
"dunsNumber": "124546354",
"mergers": [
{
"mergerId": "30.123",
"matterType": "1",
"companyRole": "1",
"status": "enforcement",
"statusDate": "2021-02-27T00:00:00Z",
"planRegistrationDate": "2020-11-10T00:00:00Z",
"abortRegistrationDate": null,
"enforcementRegistrationDate": "2021-02-27T00:00:00Z",
"publicNoticeToCreditorsDate": "2020-11-10T00:00:00Z",
"publicNoticeDeadlineDate": "2021-02-24T00:00:00Z",
"acquiringCompany": {
"businessId": "1245875-2",
"dunsNumber": "356844512",
"companyName": "Acquiring Oy"
},
"mergingCompanies": [
{
"businessId": "1771541-1",
"dunsNumber": "369934355",
"companyName": "Merging 1 Oy"
},
{
"businessId": "0325483-8",
"dunsNumber": "385465094",
"companyName": "Merging 2"
},
{
"businessId": "65425870-5",
"dunsNumber": "366541594",
"companyName": "Merging 3"
},
{
"businessId": "6525881-6",
"dunsNumber": "535164905",
"companyName": "Merging 1"
}
]
}
]
}

Test cases

0869602-2 Is acquiring company in merger process
1771602-1 Is merging company in merger process
2014838-7 Doesn't have merger processes
1234567-8 Id is not found

Please note that data coverage varies between companies. Data coverage depends e.g. on company form. Remember the codes and descriptions API returns all companies REST APIs code values and descriptions - read more.