VIN
Decode a VIN
Decode a Vehicle Identification Number (VIN) to retrieve detailed vehicle specifications including make, model, fuel type, transmission, engine power, and registration date.
get/vin-decode/{vin}
Path parameters
vinstring required
Example:WAUZZZ4F55N052232
17-character Vehicle Identification Number (alphanumeric, excluding I, O, Q)
Response
Successfully decoded VIN
Example response
{
"vin": "WAUZZZ4F55N052232",
"specifications": {
"make": "Audi",
"model": "A6",
"fuel": "petrol",
"transmission": "manual",
"enginePower": 165,
"enginePowerUnit": "kW",
"bodyStyle": "SEDAN",
"drivetrain": "ALL_WHEEL_DRIVE",
"color": "BLACK",
"registrationDate": "2005-12-01T02:00:00.000Z"
},
"manufacturer": {
"name": "Audi AG",
"region": "Europe",
"country": "Germany"
},
"features": [
{
"name": "ABS",
"category": "SAFETY_SYSTEM"
},
{
"name": "ADAPTIVE_CRUISE_CONTROL",
"category": "ASSISTANCE_SYSTEM"
},
{
"name": "SUNROOF",
"category": "INTERIOR_FEATURE"
}
],
"plateNumber": {
"country": "CZ",
"plateNumber": "1A2B345"
}
}