Company rest API
Get current responsible persons of a company and responsible persons history information in last one year.
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 request parameters
| Parameter | Description | |
|---|---|---|
| id | Business id or duns number | X |
| X = Mandatory | ||
GET https://api-test.bisnode.fi/company/info/v2/responsiblepersons/{id}
| Element | Description |
|---|---|
| businessId | The company's business id |
| dunsNumber | The company's duns number |
| bisnodeId | |
| socialSecurityNumber | |
| dateOfBirth | |
| firstNames | |
| lastName | |
| nationality | For descriptions see Codes API CodeKey = "COC" |
| roleCode | For descriptions see Codes API CodeKey = "ROC" |
| roleStartDate | |
| roleEndDate | |
| alive | |
| remarks | |
| guardianship | |
| businessProhibition | |
| partialBusinessProhibition |
curl 'https://api-test.bisnode.fi/company/info/v2/responsiblepersons/2014838-7' -H 'ticket: 1234567890ABC'
Successful request and the API return results in JSON format.
{
"businessId": "2014838-7",
"dunsNumber": "539506084",
"responsiblePersons": [
{
"bisnodeId": "",
"socialSecurityNumber": null,
"dateOfBirth": "1965-06-23T00:00:00Z",
"firstNames": "Ulla Karin Maria",
"lastName": "Sandsjö",
"nationality": "SE",
"roleCode": "HVJ",
"roleStartDate": "2016-11-09T05:01:46.64Z",
"roleEndDate": null,
"alive": true,
"remarks": false,
"guardianship": false,
"businessProhibition": false,
"partialBusinessProhibition": false
},
{
"bisnodeId": "FI2101005084272",
"socialSecurityNumber": null,
"dateOfBirth": "1965-02-18T00:00:00Z",
"firstNames": "Juha Pekka",
"lastName": "Airaksinen",
"nationality": "FI",
"roleCode": "TJ",
"roleStartDate": "2006-02-13T00:00:00Z",
"roleEndDate": null,
"alive": true,
"remarks": false,
"guardianship": false,
"businessProhibition": false,
"partialBusinessProhibition": false
},
{
"bisnodeId": "",
"socialSecurityNumber": null,
"dateOfBirth": "1976-09-02T00:00:00Z",
"firstNames": "Patrik Lennart",
"lastName": "Edvinsson",
"nationality": "SE",
"roleCode": "HVJ",
"roleStartDate": "2017-06-22T00:00:00Z",
"roleEndDate": null,
"alive": true,
"remarks": false,
"guardianship": false,
"businessProhibition": false,
"partialBusinessProhibition": false
},
{
"bisnodeId": "",
"socialSecurityNumber": null,
"dateOfBirth": "1973-09-28T00:00:00Z",
"firstNames": "Hans Magnus",
"lastName": "Silfverberg",
"nationality": "SE",
"roleCode": "HPJ",
"roleStartDate": "2016-01-14T05:04:46.633Z",
"roleEndDate": null,
"alive": true,
"remarks": false,
"guardianship": false,
"businessProhibition": false,
"partialBusinessProhibition": false
}
],
"responsiblePersonHistory": [
{
"bisnodeId": "",
"socialSecurityNumber": null,
"dateOfBirth": null,
"firstNames": "Karl Peter",
"lastName": "Bergson",
"nationality": "SE",
"roleCode": "HVJ",
"roleStartDate": "2015-01-27T14:01:23.18Z",
"roleEndDate": "2017-06-22T00:00:00Z",
"alive": true,
"remarks": false,
"guardianship": false,
"businessProhibition": false,
"partialBusinessProhibition": false
}
]
}
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.