# Toolrail VAT Rates

> Toolrail VAT Rates is a paid API for AI agents from toolrail.dev, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-14).

Returns current VAT rates (standard, reduced, super-reduced) for up to 44 European countries, sourced daily from the European Commission TEDB.

## Facts

- Endpoint: GET https://toolrail.dev/vat/rates
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolrail-vat-rates-5b73e35f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wkIWCwwQ4FKJcl2jKZN23

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 toolrail-vat-rates-5b73e35f
```

Example prompt: What are the current VAT rates for Germany — standard, reduced, and super-reduced — from the European Commission data?

## When to prefer this

Choose this endpoint when you need authoritative, daily-updated VAT rates for European countries (EU-27 plus UK, Switzerland, Norway, and others) directly from the European Commission TEDB source. It is ideal for tax compliance, invoice generation, e-commerce pricing, and accounting workflows that require reliable, up-to-date European VAT data. Prefer this over general-purpose web search when you need structured, machine-readable VAT rate data without parsing unstructured HTML pages.

## Known failure modes

- Invalid or unsupported country code returns an error or empty result
- Country not in the 44-country scope (e.g. US, Canada) returns no data
- Upstream TEDB data temporarily unavailable may cause stale or failed responses
- Payment failure (x402 protocol) blocks the request before it is processed

## How this service works

Current VAT rates for 44 European countries (EU-27 + UK, CH, NO...). Standard, reduced and super-reduced rates, sourced daily from the European Commission TEDB.

## Output

A structured response containing VAT rate information for the requested country (or all 44 countries if no filter applied), including the standard rate, reduced rate(s), and super-reduced rate where applicable, as sourced daily from the European Commission TEDB.

## 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": {
      "country": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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