Home / VAT Rates / Slovenia

Slovenia VAT Rates 2026

Slovenia (Slovenija) levies Value Added Tax as DDV (Davek na dodano vrednost). The standard rate is 22%, applied to most goods and services. Reduced rates of 9.5% and 5% apply to food and water supply, books, hotel accommodation, passenger transport, medicines.

Current rates — 2026

TypeRateApplies to
Standard22%Most goods and services
Reduced9.5%Food and water supply, books, hotel accommodation, passenger transport, medicines
Reduced5%Books and newspapers (print and digital editions)

Registration and filing

Registration thresholdEUR 60,000Raised from €50,000 in January 2025
Tax authorityFinančna uprava Republike Slovenije (FURS)
Filing frequencyMonthly returns; quarterly below €210,000 turnover

Access rates via API

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

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

# Response:
# { "country_code": "SI", "tax_type": "vat",
#   "standard_rate": 22, "reduced_rates": [9.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 Slovenia standard rate.

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

// 2. Fetch current Slovenia VAT rates (no auth required)
const rates = await fetch('http://localhost:3000/api/v1/rates/SI').then(r => r.json());
// → { standard_rate: 22, reduced_rates: [9.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 Slovenia standard rate
  applyRate(rates.standard_rate, 'standard');
}

About Slovenia VAT

Slovenia raised VAT to 22% during the 2013 banking crisis as the price of avoiding an international bailout, and the rate has stuck. A separate 5% band was carved out in 2020 for books and publications, including digital editions. Wedged between Italy, Austria, Croatia and Hungary, Slovenia handles outsized transit-trade VAT flows relative to its two-million population, and mandatory B2B e-invoicing is scheduled for mid-2026.

VAT in Slovenia is administered by the Finančna uprava Republike Slovenije (FURS). Slovenia 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) · FURS (accessed Jun 2026)

Rate history

Frequently asked questions

What is the VAT rate in Slovenia in 2026?

22% standard, 9.5% reduced (food, water, transport, accommodation) and 5% for books and publications.

What is Slovenia's VAT registration threshold?

€60,000 of annual turnover since January 2025, up from €50,000.

Validate Slovenia VAT numbers Get free API key

Related concepts and guides:

VAT & GST rates in other EU countries

Portugal (23%)Romania (21%)Slovakia (23%)Spain (21%)Sweden (25%)All countries →