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

# OEM Build

> VIN Decode API for OEM vehicle build data.

Original Equipment Manufacturer (OEM) vehicle build data provides detailed information on a vehicle's make, model, year, and more.

With access to this data, you can be confident that you're getting the most accurate and up-to-date information available.

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

<ResponseExample>
  ```json Jeep Wrangler (1C4HJXEN5MW592818) theme={null}
  {
    "build": {
      "vin": "1C4HJXEN5MW592818",
      "year": "2021",
      "make": "Jeep",
      "model": "Wrangler Unlimited",
      "trim": "Unlimited Sahara 4x4",
      "series": "Sahara 4x4",
      "style": "4D SUV",
      "drivetrain": "4x4",
      "engine": "2L I-4 gasoline direct injection, DOHC, intercooled turbo, engine with 270HP",
      "transmission": "6-Speed M/T",
      "confidence": 0.995,
      "interiorColor": {
        "Black": "#000000"
      },
      "exteriorColor": {
        "Bright White Clearcoat": "#E3E7E4"
      },
      "options": {
        "DFT": "8-Speed Automatic Transmission",
        "DRZ": "Dana M200 Rear Axle",
        "BNK": "Selec-Speed Control",
        "HT1": "Black 3-Piece Hard Top"
      },
      "optionsMsrp": 4095
    }
  }
  ```
</ResponseExample>
