Home / VAT Rates / Netherlands
Netherlands VAT Rates 2026
Netherlands (Nederland) levies Value Added Tax as BTW (Belasting over de toegevoegde waarde). The standard rate is 21%, applied to most goods and services. Reduced rates of 9% apply to food and beverages, medicines, books and periodicals, hotel accommodation, public transport, art and cultural goods.
Rate update
Accommodation services moved from the 9% reduced rate to the 21% standard rate on 1 January 2026.
Current rates — 2026
| Type | Rate | Applies to |
|---|---|---|
| Standard | 21% | Most goods and services |
| Reduced | 9% | Food and beverages, medicines, books and periodicals, hotel accommodation, public transport, art and cultural goods |
Registration and filing
| Registration threshold | EUR 20,000KOR small-business scheme (optional exemption) |
| Tax authority | Belastingdienst |
| Filing frequency | Quarterly returns by default; monthly optional |
Access rates via API
The TaxID API returns current VAT and GST rates for 200+ countries and territories. Use the /api/v1/rates/NL endpoint to get Netherlands data programmatically. Responses are cached for 24 hours.
curl http://localhost:3000/api/v1/rates/NL
# No authentication required for rate lookups
# Response:
# { "country_code": "NL", "tax_type": "vat",
# "standard_rate": 21, "reduced_rates": [9],
# "currency": "EUR", "last_updated": "2026-01-01" }Applying the correct rate in code
For B2B intra-EU sales, validate the customer's VAT number first. A valid registration means reverse charge applies — you charge 0% and the customer self-accounts. For B2C, charge the Netherlands standard rate.
// 1. Validate the customer's Netherlands VAT number
const vatCheck = await fetch(
'http://localhost:3000/api/v1/validate/NL/CUSTOMER_VAT',
{ headers: { Authorization: 'Bearer YOUR_API_KEY' } }
).then(r => r.json());
// 2. Fetch current Netherlands VAT rates (no auth required)
const rates = await fetch('http://localhost:3000/api/v1/rates/NL').then(r => r.json());
// → { standard_rate: 21, reduced_rates: [9] }
// 3. Apply the correct VAT treatment
if (vatCheck.valid) {
// B2B intra-EU: reverse charge — you invoice 0%, customer self-accounts
applyRate(0, 'reverse_charge');
} else {
// B2C: charge the Netherlands standard rate
applyRate(rates.standard_rate, 'standard');
}About Netherlands VAT
The Netherlands pushed hotel and other short-stay accommodation from the 9% reduced rate to the full 21% standard rate in January 2026 — one of the sharpest single-category VAT increases in recent EU history, while culture, books and sport kept their reduced rate after a fierce parliamentary battle. Dutch VAT numbers carry a distinctive 'B' sub-number identifying entities within a fiscal unity. Rotterdam's port status makes the Dutch import-VAT deferment licence (Article 23) a major cash-flow tool for EU importers.
VAT in Netherlands is administered by the Belastingdienst. Netherlands VAT registrations are validated through the EU VIES system — validate a customer's VAT number before applying any zero-rate or reverse-charge treatment.
Sources: European Commission — Taxes in Europe Database (TEDB) · Belastingdienst — BTW (accessed Jun 2026)
Rate history
- 2012Standard rate raised from 19% to 21%
- 2019Reduced rate raised from 6% to 9%
- 2026Hotel accommodation moved from 9% to the 21% standard rate
Frequently asked questions
What is the VAT rate in the Netherlands in 2026?
21% standard and 9% reduced (food, medicines, books, culture) — but accommodation moved up to 21% in January 2026.
What is the Dutch Article 23 licence?
An import-VAT deferment that lets businesses account for import VAT in the periodic return instead of paying at the border — a key advantage of routing goods through Rotterdam or Schiphol.
Related concepts and guides: