# website2vat

> website2vat is a paid API for AI agents from website2vat.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Look up VAT number and company registration identifiers associated with a website domain.

## Facts

- Endpoint: POST https://website2vat.com/x402/vat-lookup
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/website2vat-570af249
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZTv1LG4Bw3IXyveIWz99y

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 website2vat-570af249 -d '<json body>'
```

Example prompt: Can you look up the VAT number and company registration details associated with the domain stripe.com?

## When to prefer this

Use this endpoint when you need to resolve a company's VAT or business registration number starting only from their website domain — ideal for B2B invoice compliance, supplier onboarding, lead enrichment, or automated accounts payable workflows where you know the website but not the legal entity details.

## Known failure modes

- Domain not found in database — no VAT or registration data available
- Invalid or malformed domain/URL input returns a validation error
- Some domains map to holding companies or parent entities rather than the trading company
- Non-EU companies may lack a VAT number, returning only a registration number or nothing
- Payment failure or insufficient funds returns a 402 error before lookup is attempted

## How this service works

Look up VAT and company registration identifiers for one website domain.

## Output

Returns the VAT number and/or company registration identifier(s) associated with the given domain, enabling identification of the legal entity behind a website for compliance, invoicing, or enrichment purposes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "A website domain, hostname, or URL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "domain": "builtwith.com",
  "status": "found",
  "company": "BuiltWith Pty Ltd",
  "country": "Australia",
  "identifiers": [
   {
    "type": "ABN",
    "value": "85159486292"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/website2vat-570af249/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from website2vat.com](https://www.zero.xyz/host/website2vat.com/llms.txt)
