> ## 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.

# VIN Decode

> Decode a VIN to find the year, make, model, and more.

<ParamField path="vin" type="string" required>
  The Vehicle Identification Number (e.g. 1C4HJXEN5MW592818)
</ParamField>

<ResponseExample>
  ```json Jeep Wrangler (1C4HJXEN5MW592818) theme={null}
  {
    "vin": "1C4HJXEN5MW592818",
    "squishVin": "1C4HJXENMW",
    "checkDigit": "5",
    "checksum": true,
    "year": "2021",
    "make": "Jeep",
    "model": "Wrangler",
    "styleId": "401858048",
    "vehicle": {
      "vin": "1C4HJXEN5MW592818",
      "year": "2021",
      "make": "Jeep",
      "model": "Wrangler"
    }
  }
  ```
</ResponseExample>
