API endpoints
- https://api.bisnode.fi/company/info/v2/bondnotices- Production environment
- https://api-test.bisnode.fi/company/info/v2/bondnotices - Test environment
API request parameters
Parameter | Description | |
---|---|---|
Id | Business id or duns number. | X |
X = Mandatory |
API Response
Information | Description |
---|---|
Business ID | Company's business id. |
Duns number | If available. |
RegistrationDate | Register date. |
NumberOfOriginalEntry | Number of original entry |
BondOwnerName | Bond Owner |
Capital | Capital |
API request and response example
curl 'https://api-test.bisnode.fi/company/info/v2/bondnotices/2014838-7' -H 'x-api-key: 1234567890ABC'
Successful request and the API return results in JSON format.
{ "businessId": "2014838-7", "dunsNumber": "539506084", "bondNotices": [ "registrationDate": "1990-04-09T00:00:00Z", "numberOfOriginalEntry": "1990/001421K", "bondOwnerName": "Kansallis-Osake-Pankki", "capital": 60000 }, { "registrationDate": "1990-04-09T00:00:00Z", "numberOfOriginalEntry": "1990/001421K", "bondOwnerName": "Kansallis-Osake-Pankki", "capital": 40000 } ] }
SWAGGER - Developer REST API documentation - read more »