Endpoints
- https://api.bisnode.fi/company/info/v3/scoring-ai - production environment
- https://api-test.bisnode.fi/company/info/v3/scoring-ai - 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-ai/{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-ai/2014838-7' -H 'x-api-key: 1234567890ABC'
Successful request and the API return results in JSON format.
{ "businessId": "2014838-7", "dunsNumber": "539506084", "scoring": { "scoring": 548, "scoring_date": "2020-03-15T03:39:11Z" }, "scoringHistory": [ { "scoring": 551, "scoring_date": "2020-03-13T03:39:31Z" }, { "scoring": 558, "scoring_date": "2020-03-08T03:39:23Z" }, { "scoring": 545, "scoring_date": "2020-03-05T03:39:06Z" }, { "scoring": 407, "scoring_date": "2020-01-21T13:58:27Z" } ] }