API endpoints
- https://api.bisnode.fi/vehicle/info/v1/price-estimate/ - production environment
- https://api-test.bisnode.fi/vehicle/info/v1/price-estimate/ - test environment
NOTICE Data in the test environment is randomized.
API request parameters
Parameter | Description | |
---|---|---|
id | Vehicle registration number or VIN | X |
X = Mandatory |
GET https://api-test.bisnode.fi/vehicle/info/v1/price-estimate/{id}
API response
Element | Description |
---|---|
VehicleType | Type of vehicle. |
NewVehiclePriceEstimate | How much corresponding vehicle costs currently as new? |
CurrentPriceEstimate | Statistical price estimate for the current price of the vehicle. |
Warnings |
If only some of the requested data was available, warnings contains message(s). |
API request and response example
curl 'https://api-test.bisnode.fi/vehicle/info/v1/price-estimate/oof-777' -H 'ticket: 1234567890ABC'
Successful request and the API return results in JSON format.
[ { "vehicleType": "Passanger Car", "newVehiclePriceEstimate": 8492, "currentPriceEstimate": 6400 "warnings": [] } ]