# EU EORI Number Validation

> EU EORI Number Validation is a paid API for AI agents from x402-datashop-production.up.railway.app, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Validates an EORI number against the European Commission EOS/DDS2 service and returns registration status, trader name, and address

## Facts

- Endpoint: GET https://x402-datashop-production.up.railway.app/v1/eu/eori
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eu-eori-number-validation-c34ff006
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8j1ZQ_BqMytgwEd167osN

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability eu-eori-number-validation-c34ff006
```

Example prompt: Can you check if EORI number FR38347481400100 is valid and tell me the registered company name and address?

## When to prefer this

Use this endpoint when you need authoritative, real-time validation of an EORI number directly from the European Commission's official EOS/DDS2 registry. Prefer this over scraping EU websites or using third-party trade databases when you need a clean JSON response, upstream SOAP abstracted away, and a low per-call cost. Ideal for automated compliance pipelines, supplier onboarding checks, and customs clearance workflows.

## Known failure modes

- Invalid EORI format (not 2-letter country code + up to 15 alphanumerics) returns a 400 error
- EORI number not found in the EC registry returns valid: false
- Operator has not consented to publication so name and address fields are absent even when valid
- Upstream SOAP service at EC is temporarily unavailable causing 503
- Payment not completed or insufficient USDC balance returns 402

## How this service works

Live EORI (Economic Operators Registration and Identification) validation via the European Commission EOS/DDS2 service -- the number every business needs to clear customs in the EU. Query: ?eori=FR38347481400100 (2-letter country + up to 15 alphanumerics). Returns valid true/false plus registered name and address when the operator consented to publication. SOAP upstream, clean JSON out; 24h cache.

## Output

Returns a JSON object with a boolean 'valid' field indicating whether the EORI number is registered, plus the operator's registered name and address if they have consented to public disclosure. Responses are cached for 24 hours.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "eori"
     ],
     "properties": {
      "eori": {
       "type": "string",
       "description": "EORI number: 2-letter country code + 1-15 alphanumerics (FR uses SIRET)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eu-eori-number-validation-c34ff006/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-datashop-production.up.railway.app](https://www.zero.xyz/host/x402-datashop-production.up.railway.app/llms.txt)
