Company rest API
The API returns company's demerger 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.
| Parameter | Description | |
|---|---|---|
| id | Business id or duns number | X |
| X = Mandatory | ||
GET https://api-test.bisnode.fi/company/info/v3/demerger/{id}
| Element | Description |
|---|---|
| businessId | The company's business id. e.g. 2014838-7 |
| dunsNumber | The company's duns number. e.g. 539506084 |
| demergers | Deerger processes the company id is involved in |
| demergerId | Id of the demerger process |
| matterType | Matter type of the demerger process. For descriptions see v3/codeset API endpoint= "demerger",field="matterType" |
| companyRole | Role of the company in demerger process. For descriptions see v3/codeset API endpoint= "demerger",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 |
| demergingCompany | The demerging company of the demerger process |
| successorCompanies | The successor companies of the demerger process |
| companyName | Name of the company in demerger process |
curl 'https://api-test.bisnode.fi/company/info/v3/demerger/id=9874145-2' -H 'x-api-key: 1234567890ABC'
Successful request and the API return results in JSON format.
{
"businessId": "1234567-1",
"dunsNumber": "731234877",
"demergers": [
{
"demergerId": "31.001",
"matterType": "5",
"companyRole": "3",
"status": "enforcement",
"statusDate": "2021-07-31T00:00:00Z",
"planRegistrationDate": "2021-03-16T00:00:00Z",
"abortRegistrationDate": null,
"enforcementRegistrationDate": "2021-07-31T00:00:00Z",
"publicNoticeToCreditorsDate": "2021-03-16T00:00:00Z",
"publicNoticeDeadlineDate": "2021-06-30T00:00:00Z",
"demergingCompany": {
"businessId": "1234567-1",
"dunsNumber": "731234877",
"companyName": "Demerging Oy"
},
"successorCompanies": [
{
"businessId": "7894561-1",
"dunsNumber": "152478952",
"companyName": "Successor 1 Oy"
},
{
"businessId": "6584122-9",
"dunsNumber": "541246948",
"companyName": "Successor 2 Oy"
}
]
}
]
}
| 2427600-1 | Is demerging company in demerger process |
| 2677892-9 | Is successor company in demerger process |
| 2014838-7 | Doesn't have demerger 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.