# Bulk EORI Validation – EU Customs Number Check

**Use case:** 

Validate EU EORI numbers in bulk against the European Commission service and get normalized, privacy-safe customs registration results.

## Input

```json
{
  "eoriNumbers": [
    "EU000000000000000"
  ],
  "priorStatuses": [],
  "maxConcurrency": 1,
  "minDelayMs": 1000,
  "maxRetries": 2,
  "requestTimeoutSecs": 20
}
```

## Output

```json
{
  "eori": {
    "label": "Normalized EORI",
    "format": "string"
  },
  "country_prefix": {
    "label": "Country prefix",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "previous_status": {
    "label": "Previous status",
    "format": "string"
  },
  "status_change": {
    "label": "Status change",
    "format": "string"
  },
  "checked_at": {
    "label": "Checked at",
    "format": "string"
  },
  "attempts": {
    "label": "HTTP attempts",
    "format": "integer"
  },
  "error_code": {
    "label": "Error code",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [EORI Bulk Validator & Monitor](https://apify.com/bene123/eori-bulk-validator-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/bene123/eori-bulk-validator-monitor) to learn more, explore other use cases, and run it yourself.