VIN Decoder
VIN decoder with full European coverage, providing consistently structured vehicle data in standardised, easy-to-consume fields for rapid integration.
Key Features
VIN Decode
Accurate identification of vehicles, covering all brands and markets in Europe.
Vehicle Description
Identifies manufacturer, model range, model and derivative.
Vehicle Build
Identifies body type, fuel, transmission and build year.
Sample Response
V1
Documentation
Introduction
TODO
Header
When making calls to our API, include the following header:
x-api-key:your-api-key-here
Example Request
https://api.oneautoapi.com/cartell/vindecoder?vehicle_identification_number=ABCDE123456F78910
Example Sandbox Request
https://sandbox.oneautoapi.com/cartell/vindecoder?vehicle_identification_number=ABCDE123456F78910
Request Parameters
vehicle_identification_number
mandatory, string, e.g. ABCDE123456F78910
Vehicle identification number (VIN).
Sample Response
{
"success": true,
"result": {
"manufacturer_desc": "MINI",
"model_range_desc": "HATCH",
"model_desc": "COOPER CLASSIC",
"derivative_desc": "1.5 COOPER CLASSIC HATCHBACK 3dr PETROL MANUAL",
"body_type_desc": "HATCHBACK",
"fuel_type_desc": "PETROL",
"transmission_desc": "MANUAL",
"manufactured_year": 2020
},
"error": "If there is an error the message would go here"
}Response Parameters
success
e.g. true
Whether the api call was successful
manufacturer_desc
e.g. MINI
Manufacturer description
model_range_desc
e.g. HATCH
Model range description.
model_desc
e.g. COOPER CLASSIC
Model description.
derivative_desc
e.g. 1.5 COOPER CLASSIC HATCHBACK 3dr PETROL MANUAL
Derivative description.
body_type_desc
e.g. HATCHBACK
The body type description
fuel_type_desc
e.g. PETROL
The vehicle's fuel type description
transmission_desc
e.g. MANUAL
The vehicle's transmission type
manufactured_year
e.g. 2020
Year of manufacture.
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
