# Decode a Sample Honda VIN

**Use case:** 

Get structured data for decode-sample-honda-vin with Nhtsa Vin Decoder. Export results for research, monitoring, or automation.

## Input

```json
{
  "vins": [
    "1HGCM82633A004352"
  ],
  "maxVins": 1,
  "concurrency": 1
}
```

## Output

```json
{
  "vin": {
    "label": "VIN",
    "format": "text"
  },
  "is_valid": {
    "label": "Valid",
    "format": "boolean"
  },
  "model_year": {
    "label": "Year",
    "format": "number"
  },
  "make": {
    "label": "Make",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "trim": {
    "label": "Trim",
    "format": "text"
  },
  "vehicle_type": {
    "label": "Vehicle type",
    "format": "text"
  },
  "body_class": {
    "label": "Body",
    "format": "text"
  },
  "engine_displacement_l": {
    "label": "Engine L",
    "format": "number"
  },
  "fuel_type_primary": {
    "label": "Fuel",
    "format": "text"
  },
  "drive_type": {
    "label": "Drive",
    "format": "text"
  },
  "plant_country": {
    "label": "Plant country",
    "format": "text"
  },
  "error_text": {
    "label": "Decode status",
    "format": "text"
  }
}
```

## About this Actor

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