# Bulk EU VAT number validator

**Use case:** 

Validate EU VAT numbers in bulk with VIES and export validity, company name, address, and audit timestamps.

## Input

```json
{
  "vatNumbers": [
    "IE6388047V",
    "FR40303265045",
    "DE123456789"
  ],
  "maxItems": 100,
  "maxConcurrency": 3,
  "maxRetries": 2
}
```

## Output

```json
{
  "input": {
    "label": "Original input"
  },
  "normalizedVat": {
    "label": "Normalized VAT"
  },
  "valid": {
    "label": "Valid"
  },
  "requestDate": {
    "label": "VIES request date"
  },
  "companyName": {
    "label": "Company name"
  },
  "companyAddress": {
    "label": "Company address"
  },
  "errorType": {
    "label": "Error type"
  },
  "errorMessage": {
    "label": "Error message"
  },
  "checkedAt": {
    "label": "Checked at"
  }
}
```

## About this Actor

This example demonstrates how to use [EU VIES VAT Registry Scraper](https://apify.com/automation-lab/eu-vies-vat-registry-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/eu-vies-vat-registry-scraper) to learn more, explore other use cases, and run it yourself.