> ## Documentation Index
> Fetch the complete documentation index at: https://docs.driv.ly/llms.txt
> Use this file to discover all available pages before exploring further.

# What is a VIN?

> Understanding the basics of a Vehicle Identification Number (VIN).

export const HeroContent = ({children, withGrid}) => <div>
    <div className="not-prose relative bg-gray-50/50 rounded-xl overflow-hidden dark:bg-gray-800/25">
      {withGrid && <div className="absolute grid content-center inset-0 bg-grid-neutral-200/20 [mask-image:linear-gradient(0deg,#fff,rgba(255,255,255,0.6))] dark:bg-grid-white/5 dark:[mask-image:linear-gradient(0deg,rgba(255,255,255,0.1),rgba(255,255,255,0.5))]" style={{
  backgroundPosition: '10px 10px',
  color: '#070712'
}}></div>}
      <div className="relative rounded-xl overflow-hidden flex justify-center">{children}</div>
      <div className="absolute inset-0 pointer-events-none border border-black/5 rounded-xl dark:border-white/5"></div>
    </div>
  </div>;

<HeroContent>
  <img class="block" src="https://mintcdn.com/drivly/26Ex-nQxnySgQw-c/images/VinDecodeOne.png?fit=max&auto=format&n=26Ex-nQxnySgQw-c&q=85&s=bac125611f68055c99c0ebf4c8a2f93d" alt="Hero Dark" width="1680" height="914" data-path="images/VinDecodeOne.png" />
</HeroContent>

## Introduction

A Vehicle Identification Number (VIN) is a unique 17-character alphanumeric code used to identify individual vehicles. Unlike registration numbers that can change with ownership, the VIN remains constant throughout the life of the vehicle, making it a vital tool for tracking its history and characteristics.

## Why is the VIN Important?

1. **Identification:** Every vehicle has a unique VIN that serves as an automotive fingerprint, making it essential for vehicle registration and identification worldwide.
2. **Access to vehicle history:** The VIN allows access to a vehicle’s history report, detailing past ownership, service records, and whether it has been involved in accidents.
3. **Theft prevention:** VINs help in recovering stolen vehicles as they are difficult to alter without detection.
4. **Safety and recall:** Automakers and regulatory agencies use the VIN to issue recalls and safety notifications to ensure that specific vehicles can be quickly identified and fixed.

## VIN Decode Breakdown

Let's decode an example VIN: `ZPBUA1ZL9KLA00848` from a **2019 Lamborghini Urus**.

| Property |                                         | Description                                                            |
| -------- | --------------------------------------- | ---------------------------------------------------------------------- |
| `ZPB`    | **World Manufacturer Identifier (WMI)** | **`Z`** Country of origin (Italy), **`PB`** Manufacturer (Lamborghini) |
| `UA1ZL`  | **Vehicle Descriptor Section (VDS)**    | Identifies the model, body type, and engine type                       |
| `9`      | **Check Digit**                         | Used to validate the VIN                                               |
| `K`      | **Model Year**                          | Indicates the model year (2019)                                        |
| `L`      | **Plant Code**                          | Plant where the vehicle was manufactured                               |
| `A00848` | **Serial Number**                       | Unique identifier assigned to the vehicle                              |

## Decoded VIN Attributes

Using the example VIN above, here's a decode VIN highlighting some key attributes of the 2019 Lamborghini Urus:

```json theme={null}
{
  "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:

Extract basic details like year, make, model, and trim.

```json theme={null}
{
  "vin": "ZPBUA1ZL9KLA00848",
  "year": "2019",
  "make": "Lamborghini",
  "model": "Urus",
  "trim": "Base"
}
```

### Configuration and Options:

Learn about specific configurations, including engine, paint options, and factory-installed equipment.

```json theme={null}
{
  "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",
    ...
  ]
  "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"
  ]
}
```

### Pricing and Warranty:

Access information on pricing, warranty terms, and coverage details.

```json theme={null}
{
  "msrpBase": 200000,
  "msrpDiscount": 100,
  "msrpOptions": 6945,
  "msrpDelivery": 3995,
  "msrp": 210940,
  "warrantyBasicMonths": 36,
  "warrantyBasicMiles": 621388
}
```

### Vehicle Features:

```json theme={null}
{
  "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

You can find the VIN in several places:

1. **On the Vehicle:** The VIN is typically found on the driver’s side dashboard (visible through the windshield), on the driver’s side door pillar, or on engine blocks.
2. **Documentation:** Look for the VIN on your vehicle’s registration documents, insurance papers, title, and owner’s manual.
