Home / VAT Rates / France

France VAT Rates 2026

France levies Value Added Tax as TVA (Taxe sur la Valeur Ajoutée). The standard rate is 20%, applied to most goods and services. Reduced rates of 10% and 5.5% apply to hotel accommodation, restaurant services, passenger transport, building renovation.

Current rates — 2026

TypeRateApplies to
Standard20%Most goods and services
Reduced10%Hotel accommodation, restaurant services, passenger transport, building renovation
Reduced5.5%Food, gas and electricity supply, books, cultural events, social housing renovation
Super-reduced2.1%Press subscriptions (newspapers and magazines), prescription medicines, live animals for slaughter

Registration and filing

Registration thresholdEUR 85,000Franchise en base: €85,000 for goods / €37,500 for services (a planned single €25,000 threshold was repealed in November 2025)
Tax authorityDirection générale des Finances publiques (DGFiP)
Filing frequencyMonthly returns; quarterly if annual VAT due is below €4,000

Access rates via API

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

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

# Response:
# { "country_code": "FR", "tax_type": "vat",
#   "standard_rate": 20, "reduced_rates": [10, 5.5],
#   "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 France standard rate.

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

// 2. Fetch current France VAT rates (no auth required)
const rates = await fetch('http://localhost:3000/api/v1/rates/FR').then(r => r.json());
// → { standard_rate: 20, reduced_rates: [10, 5.5] }

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

About France VAT

France invented VAT in 1954, and its four-rate structure (20/10/5.5/2.1) remains one of the most layered in Europe — the 2.1% super-reduced rate for press and reimbursable medicines survives as a grandfathered exception. Corsica and the overseas departments apply their own lower rate schedules. A controversial plan to collapse the small-business thresholds into a single €25,000 limit was definitively repealed in November 2025 after protests from micro-entrepreneurs.

VAT in France is administered by the Direction générale des Finances publiques (DGFiP). France 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) · impots.gouv.fr — TVA (accessed Jun 2026)

Rate history

Frequently asked questions

What is the VAT rate in France in 2026?

20% standard, 10% and 5.5% reduced rates, plus a 2.1% super-reduced rate for press and reimbursable medicines.

What is the French VAT franchise threshold in 2026?

€85,000 for goods and €37,500 for services — the proposed unified €25,000 threshold was abandoned in late 2025.

Validate France VAT numbers Get free API key

Related concepts and guides:

VAT & GST rates in other EU countries

Germany (19%)Greece (24%)Hungary (27%)Ireland (23%)Italy (22%)All countries →