Norway VAT Numbers

Format, rates & examples

Everything you need to know about Merverdiavgift (MVA) numbers in Norway โ€” format rules, current rates, and real company examples you can verify against VIES.

European countryMVA โ€” MerverdiavgiftNOK

VAT Number Format

Structure

9 digits + MVA

Example format

123456789MVA

Regex

^\d{9}MVA$

VAT numbers are not case-sensitive โ€” lowercase input is automatically normalised.

Current VAT Rates

Standard

25%

Reduced

12%

Reduced

15%

Rates from EU Commission TEDB ยท Updated 2026-05-14

Norway VAT rates via API

Get Norway VAT rates via API โ€” free, no key

No API key required
Request
curl "https://api.vatnode.dev/v1/rates/NO"
Response200 OK
{
  "countryCode": "NO",
  "countryName": "Norway",
  "vatName": "Merverdiavgift",
  "vatAbbr": "MVA",
  "standardRate": 25,
  "reducedRates": [
    15,
    12
  ],
  "superReducedRate": null,
  "parkingRate": null,
  "vatNumberFormat": "9 digits + MVA",
  "vatNumberPattern": "^\\d{9}MVA$",
  "updatedAt": "2026-05-14"
}

View full rates API reference โ†’

Get Norway 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('NO')
console.log(rate.standard) // NO standard VAT rate
getRate() result200 OK
{
  "country": "Norway",
  "currency": "NOK",
  "eu_member": false,
  "vat_name": "Merverdiavgift",
  "vat_abbr": "MVA",
  "standard": 25,
  "reduced": [
    12,
    15
  ],
  "super_reduced": null,
  "parking": null,
  "format": "9 digits + MVA",
  "pattern": "^\\d{9}MVA$"
}

View package on GitHub โ†’

Frequently Asked Questions

What is the VAT number format in Norway?โ–พ

VAT numbers in Norway follow the format: 9 digits + MVA. Example: 123456789MVA. VAT numbers are not case-sensitive โ€” lowercase input is automatically normalised.

What is the VAT number regex pattern in Norway?โ–พ

Use this regular expression to validate VAT numbers in Norway MVA number format locally:

^\d{9}MVA$

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

What is the standard MVA rate in Norway?โ–พ

The standard MVA rate in Norway is 25%. Reduced rates: 12%, 15%. Rates are sourced from the EU Commission TEDB and updated daily.

What does MVA stand for in Norway?โ–พ

MVA stands for Merverdiavgift โ€” the Norway name for Value Added Tax (VAT). It appears on Norway invoices and tax documents.