# x402toll VAT/GST Calculator

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

Adds or removes VAT/GST from a monetary amount using verified 2026 standard tax rates for 16 major economies worldwide.

## Facts

- Endpoint: POST https://x402toll.com/v1/commerce/vat-gst
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402toll-vat-gst-calculator-8074fdff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9qqupm7mkKBqqBZBxy-YN

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 x402toll-vat-gst-calculator-8074fdff -d '<json body>'
```

Example prompt: I need to add UK VAT to a price of £250 — what's the VAT-inclusive total using the current 2026 standard rate?

## When to prefer this

Use this endpoint when you need accurate, up-to-date 2026 standard VAT/GST rates for major global economies (UK, EU, Australia, Canada, Japan, Singapore, UAE, India, and others) and need to either gross-up (add tax) or net-down (remove tax) a monetary amount. Prefer this over a generic tax API when you specifically need international VAT/GST rather than US sales tax, and when you need verified current-year rates without maintaining your own rate table.

## Known failure modes

- Unsupported country code returns an error — only 16 major economies are supported
- Invalid ISO country code format returns a validation error
- Missing required fields (amount or country) returns a 400-level error
- Non-numeric amount value returns a schema validation error

## How this service works

VAT / GST for 16 major economies (UK, EU, Australia, Canada, Japan, Singapore, UAE, India, and more) at the verified 2026 standard rate — add or remove.

## Output

Returns the computed amount after adding or removing VAT/GST at the verified 2026 standard rate for the specified country, along with the applicable tax rate and the tax component as a discrete value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "enum": [
    "add",
    "remove"
   ],
   "type": "string",
   "default": "add"
  },
  "amount": {
   "type": "number"
  },
  "country": {
   "type": "string",
   "description": "ISO country code, e.g. GB, DE, AU, SG, IN"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402toll-vat-gst-calculator-8074fdff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402toll.com](https://www.zero.xyz/host/x402toll.com/llms.txt)
