Company rest API
The API returns company's remarks 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/v2/remarks/{id}
| Element | Description |
|---|---|
| businessId | The company's business id |
| dunsNumber | The company's duns number |
| remarkId | |
| remarkCode | For descriptions see Codes API CodeKey = "REC" |
| remarkDate | The date when the remark has registered into the official register. |
| amount | Amount in euros (€) |
| creditor | Name of the creditor. e.g. Lindoff Oy |
| remarkSource | Name of the data source. e.g. Pohjois-Savon käräjäoikeus |
| caseTypeCode | For descriptions see Codes API CodeKey = "CTC" |
| caseId | |
| incidentGroup | |
| additionalCaseId | |
| additionalInfo | The element contains additional information about the remark. |
| remarkPaidDate | The date when the remark has paid. The element contains the REF information. |
| remarkExpireDate | The date when the remark expires. |
| lastModified |
curl 'https://api-test.bisnode.fi/company/info/v2/remarks/2014838-7' -H 'ticket: 1234567890ABC'
Successful request and the API return results in JSON format.
{
"businessId": "2014838-7",
"dunsNumber": "368445549",
"remarks": [
{
"remarkId": 14752501,
"remarkCode": "AST",
"remarkDate": "2016-11-08T00:00:00Z",
"amount": 1500,
"creditorName": "Intrum Justitia Oy",
"remarkSource": "",
"caseTypeCode": null,
"caseId": "",
"incidentGroup": null,
"incidentId": "27840901",
"additionalInfo": "",
"remarkPaidDate": null,
"remarkExpiresDate": "2019-11-08T00:00:00Z",
"remarkValidToDate": "2019-11-08T00:00:00Z",
"remarkCreatedAt": "2016-11-08T10:00:09.52Z",
"lastModified": "2019-04-11T09:15:05.787Z"
},
{
"remarkId": 15432032,
"remarkCode": "AST",
"remarkDate": "2017-02-10T00:00:00Z",
"amount": 106,
"creditorName": "Intrum Justitia Oy",
"remarkSource": "",
"caseTypeCode": null,
"caseId": "",
"incidentGroup": null,
"incidentId": "28394761",
"additionalInfo": "",
"remarkPaidDate": null,
"remarkExpiresDate": "2020-02-10T00:00:00Z",
"remarkValidToDate": "2020-02-10T00:00:00Z",
"remarkCreatedAt": "2017-02-10T10:00:06.197Z",
"lastModified": "2019-04-11T09:15:05.787Z"
},
{
"remarkId": 15435212,
"remarkCode": "AST",
"remarkDate": "2017-02-14T00:00:00Z",
"amount": 387,
"creditorName": "Intrum Justitia Oy",
"remarkSource": "",
"caseTypeCode": null,
"caseId": "",
"incidentGroup": null,
"incidentId": "28499001",
"additionalInfo": "",
"remarkPaidDate": null,
"remarkExpiresDate": "2020-02-14T00:00:00Z",
"remarkValidToDate": "2020-02-14T00:00:00Z",
"remarkCreatedAt": "2017-02-14T10:00:07.243Z",
"lastModified": "2019-04-11T09:15:05.787Z"
},
{
"remarkId": 15108273,
"remarkCode": "AST",
"remarkDate": "2017-01-10T00:00:00Z",
"amount": 333,
"creditorName": "Intrum Justitia Oy",
"remarkSource": "",
"caseTypeCode": null,
"caseId": "",
"incidentGroup": null,
"incidentId": "28148031",
"additionalInfo": "",
"remarkPaidDate": null,
"remarkExpiresDate": "2020-01-10T00:00:00Z",
"remarkValidToDate": "2020-01-10T00:00:00Z",
"remarkCreatedAt": "2017-01-10T10:00:11.21Z",
"lastModified": "2019-04-11T09:15:05.787Z"
},
{
"remarkId": 15438015,
"remarkCode": "YVK",
"remarkDate": "2017-02-15T00:00:00Z",
"amount": 1142,
"creditorName": "Autokaappa Oy",
"remarkSource": "Tuusulan käräjäoikeus",
"caseTypeCode": null,
"caseId": "2016/11501",
"incidentGroup": null,
"incidentId": "",
"additionalInfo": "",
"remarkPaidDate": null,
"remarkExpiresDate": "2020-02-15T00:00:00Z",
"remarkValidToDate": "2020-02-15T00:00:00Z",
"remarkCreatedAt": "2017-02-16T06:22:09.287Z",
"lastModified": "2019-04-11T09:15:05.787Z"
},
{
"remarkId": 15717042,
"remarkCode": "YVK",
"remarkDate": "2017-03-28T00:00:00Z",
"amount": 756.7,
"creditorName": "Reissu Heikki Oy",
"remarkSource": "Tuusulan käräjäoikeus",
"caseTypeCode": null,
"caseId": "2017/1881",
"incidentGroup": null,
"incidentId": "",
"additionalInfo": "",
"remarkPaidDate": null,
"remarkExpiresDate": "2025-12-02T00:00:00Z",
"remarkValidToDate": "2025-12-02T00:00:00Z",
"remarkCreatedAt": "2017-03-29T06:21:00.563Z",
"lastModified": "2020-08-20T05:34:40.513Z"
}
]
}
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.