Endpoints
- https://api.bisnode.fi/company/info/v3/scoring-logit - production environment
- https://api-test.bisnode.fi/company/info/v3/scoring-logit - test environment
Request parameters
Parameter | Description | |
---|---|---|
id | Business id or duns number | X |
X = Mandatory |
GET https://api-test.bisnode.fi/company/info/v3/scoring-logit/{id}
Response
Element | Description |
---|---|
businessId | The company's business id |
dunsNumber | The company's duns number |
scoring | |
scoring_date |
Request and response example
curl 'https://api-test.bisnode.fi/company/info/v3/scoring-logit/2014838-7' -H 'x-api-key: 1234567890ABC'
Successful request and the API return results in JSON format.
{ "businessId": "2014838-7", "dunsNumber": "539506084", "scoring": { "scoring": 239, "scoring_date": "2020-03-15T04:12:23Z" }, "scoringHistory": [ { "scoring": 224, "scoring_date": "2020-03-08T04:12:18Z" }, { "scoring": 218, "scoring_date": "2020-03-05T04:12:03Z" }, { "scoring": 147, "scoring_date": "2020-01-21T15:39:53Z" } ] }