# VIN Decoder — Mixed Fleet Batch Lookup

**Use case:** 

Batch-decode a list of VINs into make, model, year, body class, drivetrain, fuel, GVWR and plant country — one clean row per VIN, plus a validity flag.

## Input

```json
{
  "vins": [
    "1HGCM82633A004352",
    "JH4KA7561PC008269",
    "1FTFW1ET5DFC10312",
    "5YJ3E1EA7KF317274",
    "WBA3A5C50DF599060",
    "1GNSKBKC1FR294914"
  ],
  "extended": false,
  "maxVins": 10000
}
```

## Output

```json
{
  "vin": {
    "label": "VIN",
    "format": "string"
  },
  "make": {
    "label": "Make",
    "format": "string"
  },
  "model": {
    "label": "Model",
    "format": "string"
  },
  "model_year": {
    "label": "Model year",
    "format": "string"
  },
  "vehicle_type": {
    "label": "Vehicle type",
    "format": "string"
  },
  "body_class": {
    "label": "Body class",
    "format": "string"
  },
  "drive_type": {
    "label": "Drive type",
    "format": "string"
  },
  "fuel_type_primary": {
    "label": "Primary fuel type",
    "format": "string"
  },
  "gvwr": {
    "label": "GVWR",
    "format": "string"
  },
  "plant_country": {
    "label": "Plant country",
    "format": "string"
  },
  "decode_valid": {
    "label": "Decode valid",
    "format": "boolean"
  },
  "error_code": {
    "label": "Error code",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [NHTSA VIN Decoder API — Batch vPIC VIN Lookup](https://apify.com/malonestar/nhtsa-vpic-vin-decoder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/malonestar/nhtsa-vpic-vin-decoder) to learn more, explore other use cases, and run it yourself.