Iceland VAT Numbers

Format, rates & examples

Everything you need to know about Virðisaukaskattur (VSK) numbers in Iceland — format rules, current rates, and real company examples you can verify against VIES.

European countryVSKVirðisaukaskatturISK

VAT Number Format

Structure

5–6 digits

Example format

123456

Regex

^\d{5,6}$

VAT numbers are not case-sensitive — lowercase input is automatically normalised.

Current VAT Rates

Standard

24%

Reduced

11%

Rates from EU Commission TEDB · Updated 2026-05-14

Iceland VAT rates via API

Get Iceland VAT rates via API — free, no key

No API key required
Request
curl "https://api.vatnode.dev/v1/rates/IS"
Response200 OK
{
  "countryCode": "IS",
  "countryName": "Iceland",
  "vatName": "Virðisaukaskattur",
  "vatAbbr": "VSK",
  "standardRate": 24,
  "reducedRates": [
    11
  ],
  "superReducedRate": null,
  "parkingRate": null,
  "vatNumberFormat": "5–6 digits",
  "vatNumberPattern": "^\\d{5,6}$",
  "updatedAt": "2026-05-14"
}

View full rates API reference

Get Iceland VAT rates via package — offline, no HTTP

eu-vat-rates-data
Request
# npm install eu-vat-rates-data
import { getRate } from 'eu-vat-rates-data'

const rate = getRate('IS')
console.log(rate.standard) // IS standard VAT rate
getRate() result200 OK
{
  "country": "Iceland",
  "currency": "ISK",
  "eu_member": false,
  "vat_name": "Virðisaukaskattur",
  "vat_abbr": "VSK",
  "standard": 24,
  "reduced": [
    11
  ],
  "super_reduced": null,
  "parking": null,
  "format": "5–6 digits",
  "pattern": "^\\d{5,6}$"
}

View package on GitHub

Frequently Asked Questions

What is the VAT number format in Iceland?

VAT numbers in Iceland follow the format: 5–6 digits. Example: 123456. VAT numbers are not case-sensitive — lowercase input is automatically normalised.

What is the VAT number regex pattern in Iceland?

Use this regular expression to validate VAT numbers in Iceland VSK number format locally:

^\d{5,6}$

Test against the uppercase number. Format validation catches typos locally.

What is the standard VSK rate in Iceland?

The standard VSK rate in Iceland is 24%. Reduced rates: 11%. Rates are sourced from the EU Commission TEDB and updated daily.

What does VSK stand for in Iceland?

VSK stands for Virðisaukaskattur — the Iceland name for Value Added Tax (VAT). It appears on Iceland invoices and tax documents.