Get current VAT rates for EU countries including standard, reduced, and zero rates. Essential for e-commerce platforms, invoicing software, and tax compliance.
{
"status": "ok",
"error": null,
"data": {
"country": "DE",
"countryName": "Germany",
"currency": "EUR",
"effectiveFrom": "2021-01-01",
"rates": {
"standard": 19,
"reduced": 7,
"reduced2": null,
"superReduced": null,
"parking": null
},
"exception": null
}
}






Get current VAT rates for EU countries including standard, reduced, and zero rates. Essential for e-commerce platforms, invoicing software, and tax compliance.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/vatrates?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ country, countryName, currency, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseIntegrate our VAT Rates API into your checkout flow. Look up the customer's country and apply the correct standard or reduced rate. Handle edge cases for digital goods and B2B sales.
Look up current VAT rates when generating invoices. Include country-specific rates and proper VAT breakdown. Handle special cases like reverse charge for B2B transactions.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/vatrates?country=DE&date=2020-07-01&postcode=35001", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog