# Bulk EU VAT Number Validator

**Use case:** 

Validate EU VAT numbers in bulk with the official VIES API and export structured validation results.

## Input

```json
{
  "vatNumbers": [
    "DE123456789",
    "IE6388047V",
    "FR40303265045"
  ],
  "countryCode": "DE",
  "maxItems": 3,
  "delayMs": 1000
}
```

## Output

```json
{
  "input": {
    "label": "Input"
  },
  "label": {
    "label": "Label"
  },
  "countryCode": {
    "label": "Country"
  },
  "vatNumber": {
    "label": "VAT number"
  },
  "normalizedVatId": {
    "label": "Normalized VAT ID"
  },
  "isValid": {
    "label": "Valid"
  },
  "userError": {
    "label": "VIES status"
  },
  "name": {
    "label": "Name"
  },
  "address": {
    "label": "Address"
  },
  "requestDate": {
    "label": "Request date"
  },
  "requestIdentifier": {
    "label": "Request ID"
  },
  "originalVatNumber": {
    "label": "Original VAT"
  },
  "approximate": {
    "label": "Approximate match"
  },
  "statusCode": {
    "label": "HTTP status"
  },
  "errorMessage": {
    "label": "Error"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "checkedAt": {
    "label": "Checked at"
  }
}
```

## About this Actor

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