# Validate a Supplier VAT Number List Against VIES

**Use case:** 

Check a whole supplier or customer list against the official VIES service in one run, and compare each registered name with the name you hold on file. Add your own EU VAT number and every row also carries a VIES consultation number, the reference a tax authority accepts as evidence you checked before zero-rating an invoice. A member state that does not answer reads as unavailable, not invalid.

## Input

```json
{
  "vatNumbers": [
    "IE6388047V | Google Ireland Limited",
    "DE811569869 | Zalando SE",
    "IT00488410010 | TIM S.p.A.",
    "PL5260250995 | Orange Polska",
    "SE556036079301 | Saab AB",
    "ES A28017895 | Telefonica",
    "EL094019245"
  ],
  "nameMatchThreshold": 60,
  "alertsOnly": false,
  "onlyChangesSinceLastRun": false,
  "trackChanges": true,
  "watchlistName": "suppliers",
  "maxVatNumbers": 500
}
```

## Output

```json
{
  "fullVatNumber": {
    "label": "VAT number"
  },
  "validationState": {
    "label": "Verdict"
  },
  "registeredName": {
    "label": "Registered name"
  },
  "expectedName": {
    "label": "Your name on file"
  },
  "nameMatch": {
    "label": "Name match"
  },
  "nameMatchScore": {
    "label": "Match score"
  },
  "registeredAddress": {
    "label": "Registered address"
  },
  "consultationNumber": {
    "label": "Consultation number"
  },
  "checkedAt": {
    "label": "Checked at"
  },
  "alerts": {
    "label": "Alerts"
  },
  "_change": {
    "label": "Change"
  },
  "viesResponse": {
    "label": "VIES response"
  }
}
```

## About this Actor

This example demonstrates how to use [EU VAT Number Validation: Bulk VIES Check & Supplier Monitor](https://apify.com/fayoussef/eu-vat-compliance-monitor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/eu-vat-compliance-monitor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fayoussef/eu-vat-compliance-monitor.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
