API endpoints
- https://api.bisnode.fi/company/info/v2/owners - production environment
- https://api-test.bisnode.fi/company/info/v2/owners - test environment
API request parameters
Parameter | Description | |
---|---|---|
id | Business id or duns number | X |
X = Mandatory |
GET https://api-test.bisnode.fi/company/info/v2/owners/{id}
API response
Element | Description |
---|---|
businessId | The company's business id |
dunsNumber | The company's duns number |
ownerFirstNames | |
ownerLastName | |
ownerSocialSecurityNumber | |
ownerCompanyName | |
ownerBusinessId | |
ownerDUNSNumber | |
ownerCountryCode | For descriptions see Codes API CodeKey = "COC" |
ownerTypeCode | For descriptions see Codes API CodeKey = "OWC" |
ownerSharesPercentage | |
sourceUpdateDate | |
lastModified | |
responsiblePersons: | |
bisnodeId | |
socialSecurityNumber | |
dateOfBirth | |
firstNames | |
lastName | |
nationality | |
roleCode | |
roleStartDate | |
roleEndDate |
API request and response example
curl 'https://api-test.bisnode.fi/company/info/v2/owners/2014838-7' -H 'ticket: 1234567890ABC'
Successful request and the API return results in JSON format.
{ "businessId": "2014838-7", "dunsNumber": "539506084", "owners": [ { "ownerFirstNames": "", "ownerLastName": "", "ownerSocialSecurityNumber": "", "ownerCompanyName": "Bisnode Ab", "ownerBusinessId": "", "ownerDUNSNumber": "356152074", "ownerCountryCode": "SE", "ownerTypeCode": "PC", "ownerSharesPercentage": 100, "sourceUpdateDate": "2014-11-03T19:30:10.213Z", "lastModified": "2017-10-06T06:43:04.22Z" } ], "responsiblePersons": [ { "bisnodeId": "", "socialSecurityNumber": "", "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 }, { "bisnodeId": "", "socialSecurityNumber": "", "dateOfBirth": "1973-09-28T00:00:00Z", "firstNames": "Hans Magnus", "lastName": "Silfverberg", "nationality": "SE", "roleCode": "HPJ", "roleStartDate": "2016-01-14T05:04:46.633Z", "roleEndDate": null }, { "bisnodeId": "", "socialSecurityNumber": "", "dateOfBirth": "1976-09-02T00:00:00Z", "firstNames": "Patrik Lennart", "lastName": "Edvinsson", "nationality": "SE", "roleCode": "HVJ", "roleStartDate": "2017-06-22T00:00:00Z", "roleEndDate": null } ] }