API endpoints
- https://api.bisnode.fi/people/info/v3/credit-worthiness - production environment
- https://api-test.bisnode.fi/people/info/v3/credit-worthiness - test environment
API response
Data element | Description |
---|---|
bisnodeId | The unique person id. |
CreditWorthiness | Person's credit worthiness check are shown in classes 11-1. Class 11: low risk. Class 1: high risk. |
API request parameters
Parameter | Description | |
---|---|---|
id | Bisnode ID | X |
X = Mandatory |
GET https://api-test.bisnode.fi/people/info/v3/credit-worthiness/{id}
API request and response example
curl 'https://api-test.bisnode.fi/people/info/v3/credit-worthiness/FI2101005032547' -H 'x-api-key: 1234567890ABC'
Successful request and the API return results in JSON format.
{ "bisnodeId": "FI2101005032547", "creditWorthiness": 10, "creditWorthinessScale": { "1": "High risk", "11": "Low risk", "null": "Unknown" } }