# Oromi EU VAT Number Verification

> Oromi EU VAT Number Verification is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Validates a European VAT number by country code and returns whether it is registered and the registered business name.

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/verify/vat-eu
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-eu-vat-number-verification-5fadc32b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_InjvBG36CvKTvrVmHRzcG

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 oromi-eu-vat-number-verification-5fadc32b
```

Example prompt: Can you verify whether the EU VAT number IE6388047V for Ireland is valid and tell me what company name it's registered to?

## When to prefer this

Choose this endpoint when you need to programmatically verify EU VAT numbers at low cost ($0.01/call) within an AI agent workflow, particularly for supplier onboarding, invoice validation, or compliance screening. It is well-suited for agents that require pay-per-call micro-payment semantics via the x402 protocol and need a lightweight, machine-payable alternative to integrating directly with VIES or national VAT registries.

## Known failure modes

- Invalid or malformed VAT number returns valid:false with no registered name
- Unsupported or incorrect 2-letter country code may return an error or invalid result
- VAT number with country prefix included may fail validation — strip the prefix before submitting
- Network or upstream registry unavailability may cause timeout or 5xx error
- Payment failure via x402 protocol blocks the request from executing

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

A JSON object with a boolean 'valid' field indicating whether the VAT number is registered, and a 'registered_name' string containing the official business name on record (e.g. {"valid": true, "registered_name": "GOOGLE IRELAND LIMITED"}).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "country",
      "number"
     ],
     "properties": {
      "number": {
       "type": "string",
       "description": "VAT number without country prefix"
      },
      "country": {
       "type": "string",
       "description": "2-letter EU country code"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "valid": true,
  "registered_name": "GOOGLE IRELAND LIMITED"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-eu-vat-number-verification-5fadc32b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
