# Interzoid EU VAT Rates API

> Interzoid EU VAT Rates API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Retrieves EU VAT tax rates, registration thresholds, and tax system details for a given European country by name, ISO code, or location input

## Facts

- Endpoint: GET https://api.interzoid.com/geteuvatrates
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-eu-vat-rates-api-5b592c01
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lasSze5yIRPcE7eNlvfNc

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 interzoid-eu-vat-rates-api-5b592c01
```

Example prompt: What's the standard and reduced VAT rate for Germany, including the registration threshold and the local name for their VAT system?

## When to prefer this

Use this endpoint when you need structured, current EU VAT rate data including reduced rates, registration thresholds, and local tax system names for a specific European country — especially useful for tax compliance, invoicing, e-commerce, and ERP/CRM enrichment workflows.

## Known failure modes

- Invalid or unrecognized country name/code returns an error or empty result
- Non-EU country lookup may return no data or indicate non-membership
- Missing required 'lookup' query parameter returns a 400 or schema validation error
- Payment failure (x402) returns a 402 Payment Required status

## How this service works

Retrieve current VAT rates for any European country (EU-27, EEA, UK, Switzerland, non-EU Europe) with category-driven breakdown of standard, reduced, super-reduced, zero-rated, and exempt categories plus registration thresholds and territorial exceptions.

## Output

Returns a JSON object containing the country name, ISO2 code, standard VAT rate (e.g. 19%), reduced rates with applicable categories (e.g. 7% on food and books), EU member status, local tax system name (e.g. Mehrwertsteuer), and annual turnover registration threshold.

## 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": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Country name, ISO code, city, or address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "TaxSystem": "VAT",
  "CountryName": "Germany",
  "ReducedRates": "7% on food, books, newspapers, public transport, hotel accommodations, cultural events",
  "StandardRate": "19%",
  "EUMemberStatus": "EU Member State",
  "CountryCodeISO2": "DE",
  "TaxSystemLocalName": "Mehrwertsteuer (MwSt.)",
  "RegistrationThreshold": "€22,000 annual turnover"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-eu-vat-rates-api-5b592c01/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
