Home / VAT Rates / Belgium

Belgium VAT Rates 2026

Belgium (België / Belgique) levies Value Added Tax as BTW / TVA. The standard rate is 21%, applied to most goods and services. Reduced rates of 12% and 6% apply to restaurant services, social housing construction.

Current rates — 2026

TypeRateApplies to
Standard21%Most goods and services
Reduced12%Restaurant services, social housing construction
Reduced6%Foodstuffs, water supply, medicines, books and newspapers
Parking12%Transitional rate for specific goods (fuel, agricultural equipment)
Zero-rated0%Daily and weekly newspapers, certain recovered materials

Registration and filing

Registration thresholdEUR 25,000Small-business exemption regime
Tax authoritySPF Finances / FOD Financiën
Filing frequencyMonthly returns; quarterly permitted below €2.5 million turnover

Access rates via API

The TaxID API returns current VAT and GST rates for 200+ countries and territories. Use the /api/v1/rates/BE endpoint to get Belgium data programmatically. Responses are cached for 24 hours.

bash
curl http://localhost:3000/api/v1/rates/BE
# No authentication required for rate lookups

# Response:
# { "country_code": "BE", "tax_type": "vat",
#   "standard_rate": 21, "reduced_rates": [12, 6],
#   "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 Belgium standard rate.

Node.js
// 1. Validate the customer's Belgium VAT number
const vatCheck = await fetch(
  'http://localhost:3000/api/v1/validate/BE/CUSTOMER_VAT',
  { headers: { Authorization: 'Bearer YOUR_API_KEY' } }
).then(r => r.json());

// 2. Fetch current Belgium VAT rates (no auth required)
const rates = await fetch('http://localhost:3000/api/v1/rates/BE').then(r => r.json());
// → { standard_rate: 21, reduced_rates: [12, 6] }

// 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 Belgium standard rate
  applyRate(rates.standard_rate, 'standard');
}

About Belgium VAT

Belgium applies 21% standard VAT with reduced rates of 12% and 6%, and is one of the few EU countries that still zero-rates daily newspapers. Demolition-and-reconstruction housing projects enjoy a 6% rate under a permanent scheme introduced in 2024. Belgian VAT returns are being migrated to the new "VAT chain" system with substitute returns for non-filers.

VAT in Belgium is administered by the SPF Finances / FOD Financiën. Belgium 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) · SPF Finances — TVA (accessed Jun 2026)

Rate history

Frequently asked questions

What is the VAT rate in Belgium in 2026?

21% standard, 12% (restaurants, social housing) and 6% (food, water, medicines, books) reduced rates.

Does Belgium have a VAT registration threshold?

Resident small businesses may stay out of VAT up to €25,000 of annual turnover; there is no threshold for foreign businesses.

Validate Belgium VAT numbers Get free API key

Related concepts and guides:

VAT & GST rates in other EU countries

Bulgaria (20%)Croatia (25%)Cyprus (19%)Czech Republic (21%)Denmark (25%)All countries →