# VIN Finder from CSV Table Mexico

**Use case:** 

Paste a table with columns id, year, make, model, version and get a real VIN per row from Mexican listings, no AI normalization fee.

## Input

```json
{
  "vehicles": [
    {
      "id": "1",
      "year": 2023,
      "make": "Chirey",
      "model": "Tiggo 8PRO",
      "version": "Luxury"
    },
    {
      "id": "2",
      "year": 2024,
      "make": "BYD",
      "model": "Dolphin",
      "version": "Base"
    },
    {
      "id": "3",
      "year": 2024,
      "make": "GWM",
      "model": "Ora 03",
      "version": "Luxury"
    }
  ],
  "tableText": "id,year,make,model,version\n1,2023,Chirey,Tiggo 7PRO,Comfort\n2,2024,BYD,Dolphin,Base\n3,2024,GWM,Ora 03,Luxury",
  "aiNormalize": true
}
```

## Output

```json
{
  "id": {
    "label": "ID"
  },
  "year": {
    "label": "Year"
  },
  "make": {
    "label": "Make"
  },
  "model": {
    "label": "Model"
  },
  "version": {
    "label": "Version"
  },
  "vin": {
    "label": "VIN / NIV"
  },
  "confidence": {
    "label": "Confidence"
  },
  "status": {
    "label": "Status"
  },
  "sourceUrl": {
    "label": "Source"
  }
}
```

## About this Actor

This example demonstrates how to use [Mexico VIN/NIV Finder by Year, Make, Model](https://apify.com/scrapers_lat/mexico-vin-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/mexico-vin-finder) to learn more, explore other use cases, and run it yourself.