# Jeep Wrangler VIN Decoder

**Use case:** 

Decode a Jeep Wrangler VIN against the official NHTSA vPIC database for make, model, year, engine, plant and specs.

## Input

```json
{
  "maxItems": 50,
  "vins": [
    "1C4HJXDG5LW244559"
  ]
}
```

## Output

```json
{
  "vin": {
    "label": "VIN",
    "format": "text"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "modelYear": {
    "label": "Year",
    "format": "text"
  },
  "trim": {
    "label": "Trim",
    "format": "text"
  },
  "bodyClass": {
    "label": "Body Class",
    "format": "text"
  },
  "vehicleType": {
    "label": "Vehicle Type",
    "format": "text"
  },
  "engineCylinders": {
    "label": "Cylinders",
    "format": "text"
  },
  "displacementL": {
    "label": "Displacement (L)",
    "format": "text"
  },
  "fuelTypePrimary": {
    "label": "Fuel",
    "format": "text"
  },
  "driveType": {
    "label": "Drive",
    "format": "text"
  },
  "doors": {
    "label": "Doors",
    "format": "text"
  },
  "seats": {
    "label": "Seats",
    "format": "number"
  },
  "forwardCollisionWarning": {
    "label": "Fwd Collision Warn",
    "format": "text"
  },
  "blindSpotMon": {
    "label": "Blind Spot Mon",
    "format": "text"
  },
  "adaptiveCruiseControl": {
    "label": "Adaptive Cruise",
    "format": "text"
  },
  "laneKeepSystem": {
    "label": "Lane Keep",
    "format": "text"
  },
  "manufacturer": {
    "label": "Manufacturer",
    "format": "text"
  },
  "plantCountry": {
    "label": "Plant Country",
    "format": "text"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [NHTSA VIN Decoder & Vehicle Specs Scraper](https://apify.com/scrapers_lat/nhtsa-vin-decoder-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/nhtsa-vin-decoder-scraper) to learn more, explore other use cases, and run it yourself.