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

TypeRateApplies to
Standard21%Most goods and services
Reduced9%Food and beverages, medicines, books and periodicals, hotel accommodation, public transport, art and cultural goods

Registration and filing

Registration thresholdEUR 20,000KOR small-business scheme (optional exemption)
Tax authorityBelastingdienst
Filing frequencyQuarterly 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.

bash
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.

Node.js
// 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

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.

Validate Netherlands VAT numbers Get free API key

Related concepts and guides:

VAT & GST rates in other EU countries

Poland (23%)Portugal (23%)Romania (21%)Slovakia (23%)Slovenia (22%)All countries →