
A Vehicle Identification Number (VIN) is a unique 17-character alphanumeric code used to identify individual vehicles. Unlike registration numbers that change with ownership, the VIN remains constant throughout the life of the vehicle, making it vital for vehicle history, recalls, theft prevention, and registration.
Why is the VIN Important?
- Identification: A VIN is a permanent fingerprint for every vehicle.
- Access to vehicle history: VINs unlock service, ownership, and accident records.
- Theft prevention: VINs are difficult to alter and aid in recovery.
- Safety and recall: Automakers and regulators use VINs to target recall notifications.
VIN Decode Breakdown
Example VIN: ZPBUA1ZL9KLA00848 (2019 Lamborghini Urus).
| Property | Section | Description |
|---|---|---|
ZPB | World Manufacturer Identifier (WMI) | Z = Italy, PB = Lamborghini |
UA1ZL | Vehicle Descriptor Section (VDS) | Identifies model, body, engine |
9 | Check Digit | Validates the VIN |
K | Model Year | Indicates 2019 |
L | Plant Code | Factory location |
A00848 | Serial Number | Unique production sequence |
Decoded VIN Attributes
Using Auto.dev’s VIN Decode API, the example VIN expands into rich structured data.
Full Vehicle Attributes
{
"vin": "ZPBUA1ZL9KLA00848",
"year": "2019",
"make": "Lamborghini",
"model": "Urus",
"trim": "Base",
"body": "Sport Utility",
"style": "AWD",
"engine": "4.0L twin-turbocharged V8 engine",
"transmission": "8-speed automatic transmission",
"paintColor": "White",
"paintName": "Bianco Icarus Metallic"
}Basic Vehicle Information
{
"vin": "ZPBUA1ZL9KLA00848",
"year": "2019",
"make": "Lamborghini",
"model": "Urus",
"trim": "Base"
}Configuration and Options
{
"body": "Sport Utility",
"style": "AWD",
"engine": "4.0L twin-turbocharged V8 engine",
"transmission": "8-speed automatic transmission",
"paintColor": "White",
"paintName": "Bianco Icarus Metallic",
"options": [
"floormats with leather piping and double stitching",
"suede leather steering wheel",
"21\" x 9.5J front and 21\" x 10.5J rear Alcione silver wheels",
"fully electric ventilated/heated front comfort seats"
]
...
}Pricing and Warranty
{
"msrpBase": 200000,
"msrpDiscount": 100,
"msrpOptions": 6945,
"msrpDelivery": 3995,
"msrp": 210940,
"warrantyBasicMonths": 36,
"warrantyBasicMiles": 621388
}Vehicle Features
{
"installedEquipment": [
"Power locks",
"Memorized adjustment",
"Cruise control",
"Smart card/smart key",
"Vehicle start button",
"Bluetooth",
"Luxury inner roof upholstery",
"Collision warning system",
"Anti collision system"
]
}How to Locate Your VIN on Your Vehicle
- Dashboard: Visible through the driver’s side windshield.
- Door pillar: Sticker/plate on the driver’s side door frame.
- Engine bay: Stamped on the engine block or frame.
- Documents: Registration, title, insurance card, and owner’s manual.