API endpoints
- https://api.bisnode.fi/yritykset/v1/CompanyNoticeInfo - Production environment
- https://test.bisnode.fi/yritykset/v1/CompanyNoticeInfo - Test environment
API request parameters
Parameter | Description | |
---|---|---|
businessId | Business ID. Can be entered with or without dash. | X |
registrationNumber | Trade register number. Can be used in request if business id is missing. | X |
X = Mandatory |
API Response
Information | Description |
---|---|
Business ID | Company's business id. |
Name | Official company trade name. |
Duns number | If available. |
Notice | More detailed description of the notice. |
Register date | Register date. |
Dissolution date | Dissolution date of the notice. |
API request and response example
curl 'https://api.bisnode.fi/yritykset/v1/CompanyNoticeInfo?businessId=2014838-7' -H 'ticket: 123456789ABC'
Request succeeded with given parameters. API responded in JSON format.
{ "companyNoticeInfoResponseTypeDetails": { "businessId": "2014838-7", "registrationNumber": null, "companyName": "Bisnode Finland Oy", "notice": null, "registrationDate": null, "dissolutionDate": null }, "Error": null }