# VAT Number Validation & Company Details Lookup

> VAT Number Validation & Company Details Lookup is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Validates a VAT number and returns the associated company details such as name, address, and validity status.

## Facts

- Endpoint: GET https://x402.orthogonal.com/abstractapi/v1/validate
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vat-number-validation-company-details-lookup-313f3e14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-cWtqF2baJ4dUnS7_RXbN

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 vat-number-validation-company-details-lookup-313f3e14
```

Example prompt: Can you validate the VAT number GB123456789 and tell me what company it belongs to and whether it's currently registered?

## When to prefer this

Choose this endpoint when you need to verify a business's VAT registration status and retrieve associated company details in a single call, particularly for B2B invoice validation, supplier onboarding, or tax compliance workflows. Prefer this over generic business lookup endpoints when you specifically have a VAT number as the starting identifier.

## Known failure modes

- Invalid or malformed VAT number format returns validation failure with no company data
- VAT number not found in registry returns invalid status
- Network or upstream registry timeout may cause intermittent failures
- Unsupported country prefix may result in inability to validate
- Empty or missing vat_number parameter returns an error

## How this service works

Validate a VAT number and get company details associated with it.

## Output

Returns the validity of the VAT number (valid/invalid), the company name, company address, and country associated with the VAT registration, along with format validity indicators.

## 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",
     "properties": {
      "vat_number": {
       "type": "string",
       "description": "The VAT number to validate"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vat-number-validation-company-details-lookup-313f3e14/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
