# EU VAT Rules Engine

> EU VAT Rules Engine is a paid API for AI agents from vat.installateur1210.at, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Determines EU VAT treatment for a transaction (place of supply, reverse charge, intra-Community supply, export, or domestic VAT) and returns the applicable rate, EN 16931 VAT category code (BT-151), exemption reason code (BT-121), and ready-to-use invoice wording in English and German with legal article references.

## Facts

- Endpoint: GET https://vat.installateur1210.at/x402/vat-rules
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/eu-vat-rules-engine-df963614
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Sk8ZDP7qNV_wQ3bouj4U

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-vat-rules-engine-df963614
```

Example prompt: We're an Austrian supplier (AT) selling digital services to a German business customer (DE) who has a valid VAT ID — can you work out the correct VAT treatment, the EN 16931 BT-151 category code, the exemption reason code if applicable, and give me the ready-to-use invoice wording in both English and German?

## When to prefer this

Choose this endpoint when you need to automate EU VAT determination for invoicing workflows — especially for XRechnung, ZUGFeRD, Peppol BIS, or OSS scenarios — and want a single call that returns not just the rate but also the exact EN 16931 BT-151 code, BT-121 exemption reason code, and legally correct invoice wording in English and German with the applicable article reference. Prefer this over generic tax APIs when your use case requires EU e-invoicing compliance fields specifically.

## Known failure modes

- Missing required parameters (supplier or customer country) returns a 400 error
- Invalid ISO-2 country codes return a validation error
- Non-EU supplier country may return unsupported or limited results
- VIES check result not provided may lead to conservative (domestic VAT) determination
- Network or upstream service failure returns a 5xx error

## How this service works

EU VAT decision engine for invoicing and e-invoicing: determines place of supply, reverse charge, intra-Community supply, export or domestic VAT, returns the rate and the EN 16931 / UNCL5305 VAT category code (BT-151) plus exemption reason code (BT-121) and ready-to-use invoice wording (EN/DE) with the legal article reference. For XRechnung, ZUGFeRD, Peppol BIS and OSS workflows.

## Output

Returns the applicable VAT rate, EN 16931 / UNCL5305 VAT category code (BT-151), exemption reason code (BT-121) where applicable, ready-to-use invoice wording in both English and German, the legal article reference for the VAT treatment, and flags indicating whether reverse charge, intra-Community supply, export, or domestic VAT rules apply.

## 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": [
      "supplier",
      "customer"
     ],
     "properties": {
      "b2b": {
       "type": "boolean",
       "description": "true = business customer"
      },
      "type": {
       "type": "string",
       "description": "'service' or 'goods'"
      },
      "customer": {
       "type": "string",
       "description": "customer country, ISO-2, e.g. DE or US"
      },
      "supplier": {
       "type": "string",
       "description": "supplier EU country, ISO-2, e.g. AT"
      },
      "customer_vat_valid": {
       "type": "boolean",
       "description": "result of a VIES check, optional"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/eu-vat-rules-engine-df963614/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vat.installateur1210.at](https://www.zero.xyz/host/vat.installateur1210.at/llms.txt)
