Identify and manage the risks associated with used vehicles.
AutoPredict uses AI to analyse over 100 million data points and estimate remaining vehicle life based on age, mileage and MOT history.
The service provides valuable insights for car buyers, and also risk managers in the finance and warranty sectors.
Key Features
VIN-level Predictions
Based on age, mileage and MOT history
Powerful AI Analysis
Using over 100 million data points
Simple Integration
VRM lookup to identify predicted life in years
Inform Car Buyers
A useful metric for consumers
Identify Claims Risk
Identify vehicles with a higher risk of warranty claims
Portfolio Management
Assess risk exposure in finance portfolios
Sample Response
V2
Documentation
Introduction
This endpoint predicts the number of years a vehicle will remain on the road.
Header
When making calls to our API, include the following header:
x-api-key:your-api-key-here
Example Request
https://api.oneautoapi.com/autopredict/predict?vehicle_registration_mark=AB21ABC
Example Sandbox Request
https://sandbox.oneautoapi.com/autopredict/predict?vehicle_registration_mark=AB21ABC
Request Parameters
vehicle_registration_mark
mandatory, string, e.g. AB21ABC
Vehicle registration number
Sample Response
{
"success": true,
"result": {
"vehicle_registration_mark": "AB21ABC",
"years_left_prediction": 1,
"prediction_string": "1-2",
"one_year_prediction": 0.12
},
"error": "If there is an error the message would go here"
}Response Parameters
success
e.g. true
Whether the api call was successful
vehicle_registration_mark
e.g. AB21ABC
Vehicle registration number (VRM).
years_left_prediction
e.g. 1
The number of predicted years vehicle will remain on the road.
prediction_string
e.g. 1-2
The predicted year range the vehicle will remain on the road.
one_year_prediction
e.g. 0.12
The percentage likelihood of the vehicle lasting the next 12 months.
error
e.g. If there is an error the message would go here
Details of what went wrong with the api call
Status Codes
200
success, chargeable
Request has been successfully received and a response has been sent.
202
accepted, non-chargeable
Request has been received and accepted for processing, but the action has not yet been completed.
204
no content, non-chargeable
Request has been successfully received but there is no content to return e.g. if an invalid VRM has been sent.
206
partial content, non-chargeable
Request has been successfully received but limited content is returned e.g. if an invalid VRM has been sent.
400
bad request, non-chargeable
Request was not received e.g. if any required parameters are missing.
403
forbidden, non-chargeable
Request was rejected e.g. if the API key is invalid or the service is not enabled.
429
too many requests, non-chargeable
API key rate limit/quota has been exceeded.
500
internal server error, non-chargeable
We are unable to process the request e.g. if the API is under extremely heavy load.
503
service unavailable, non-chargeable
Service is temporarily unavailable. Contact help@oneautoapi.com
