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.
VAT Number Format
Structure
9 digits + MVAExample format
123456789MVARegex
^\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 requiredcurl "https://api.vatnode.dev/v1/rates/NO"
{
"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"
}Get Norway VAT rates via package โ offline, no HTTP
eu-vat-rates-data# 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{
"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$"
}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.