Skip to content
Eden Engine

EU VAT Number Validation (VIES Registry)

omnial/x402-vat-validate

Given an EU VAT number with its country prefix, validates it against the EU's official VIES registry and returns whether it is currently valid, plus the registered company name and address on file when the number resolves. Results are cache-backed, so a repeated lookup can come back instantly and the response says whether it did.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.0324324 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "vat_number"
  ],
  "properties": {
    "vat_number": {
      "type": "string",
      "description": "EU VAT number including country prefix (e.g. SE556703748501)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "valid": {
      "type": "boolean",
      "description": "Whether VIES currently reports this VAT number as valid."
    },
    "cache_hit": {
      "type": "boolean",
      "description": "Present only when this exact lookup was served from cache rather than a fresh VIES call -- observed on the cached-hit fixture and absent on the fresh-lookup fixture, so treat it as optional, not guaranteed present on every response."
    },
    "cached_at": {
      "type": "string",
      "description": "ISO 8601 timestamp of when the cached result was originally fetched. Present only alongside `cache_hit`; absent on a fresh lookup."
    },
    "vat_number": {
      "type": "string",
      "description": "The VAT number exactly as submitted, echoed back."
    },
    "company_name": {
      "type": "string",
      "description": "The registered company name on file with VIES. Observed as an empty string on a VAT number VIES rejects as invalid."
    },
    "country_code": {
      "type": "string",
      "description": "Two-letter EU country code parsed from the submitted VAT number."
    },
    "request_date": {
      "type": "string",
      "description": "The date VIES processed this request, with UTC offset (e.g. '2026-09-19+02:00')."
    },
    "cache_age_hours": {
      "type": "number",
      "description": "How many hours old the cached result is. Present only alongside `cache_hit`, on the same cache-backed responses; absent on a fresh lookup."
    },
    "company_address": {
      "type": "string",
      "description": "The registered company address on file with VIES, as a single multi-line string. Observed as an empty string on a VAT number VIES rejects as invalid."
    }
  },
  "description": "The VAT validation result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0324324
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 25, 2026