Home / VAT Rates / Czech Republic

Czech Republic VAT Rates 2026

Czech Republic (Česká republika) levies Value Added Tax as DPH (Daň z přidané hodnoty). The standard rate is 21%, applied to most goods and services. Reduced rates of 12% apply to food, non-alcoholic beverages, books, hotel accommodation, healthcare services.

Rate update

Two-rate system since 2024 (merged 15% and 10% into 12%)

Current rates — 2026

TypeRateApplies to
Standard21%Most goods and services
Reduced12%Food, non-alcoholic beverages, books, hotel accommodation, healthcare services
Zero-rated0%Books (printed and electronic) since January 2024

Registration and filing

Registration thresholdCZK 2,000,000Annual turnover (~€80,000)
Tax authorityFinanční správa (Financial Administration)
Filing frequencyMonthly returns by default; quarterly possible below CZK 15 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/CZ endpoint to get Czech Republic data programmatically. Responses are cached for 24 hours.

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

# Response:
# { "country_code": "CZ", "tax_type": "vat",
#   "standard_rate": 21, "reduced_rates": [12],
#   "currency": "CZK", "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 Czech Republic standard rate.

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

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

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

About Czech Republic VAT

The Czech Republic simplified its system in January 2024 by merging two reduced rates into a single 12% band and moving books to a true 0% rate — a rarity in the EU. The 21% standard rate has held since 2013. Czech VAT payers must also file a separate monthly control statement (kontrolní hlášení) that cross-matches invoices between suppliers and customers.

VAT in Czech Republic is administered by the Finanční správa (Financial Administration). Czech Republic 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) · Finanční správa — DPH (accessed Jun 2026)

Rate history

Frequently asked questions

What is the VAT rate in the Czech Republic in 2026?

21% standard and a single 12% reduced rate (food, medicines, accommodation); books are zero-rated.

When must a Czech business register for VAT?

Once turnover exceeds CZK 2,000,000 (~€80,000) in a calendar year.

Validate Czech Republic VAT numbers Get free API key

Related concepts and guides:

VAT & GST rates in other EU countries

Denmark (25%)Estonia (24%)Finland (25.5%)France (20%)Germany (19%)All countries →