Sweden VAT Number Format (SE123456789001)
Mervärdesskatt (moms) number structure, regex & verified examples
Everything you need to know about Mervärdesskatt (moms) numbers in Sweden — they follow the pattern SE + 10 digits + 01 (e.g. SE123456789001), and can be verified against VIES. For the rates themselves, see Sweden VAT rates and their history. Building a check into your app? See the Sweden VAT API.
VAT Number Format
Structure
SE + 10 digits + 01Example format
SE123456789001Regex
^SE\d{10}01$VAT numbers are not case-sensitive — lowercase input is automatically normalised.
More on Sweden
- Sweden VAT rates and historyCurrent standard and reduced rates, and every past change.
- Sweden VAT validation APIEndpoint, response fields and code samples for this country.
- Sweden Reverse charge rulesWhen to zero-rate a cross-border B2B invoice, and what to write on it.
- Sweden VIES uptimeAvailability of this country in the Commission database, sampled continuously.
What we return for Sweden
- VIES validation (valid / not valid)
- Company name & address
- National registry ID
- Founded date
- Legal form
- Industry
- Works if VIES is down
See the full coverage table for all 27 EU member states + Northern Ireland →
Famous Sweden VAT Numbers
Spotify AB
SE556703748501
Global music streaming platform
Verify →
Klarna Bank AB
SE556737043101
Buy now, pay later fintech
Verify →
Telefonaktiebolaget LM Ericsson
SE556016068001
Swedish telecom equipment manufacturer
Verify →
H & M Hennes & Mauritz AB
SE556042722001
Global fashion retailer
Verify →
Atlas Copco AB
SE556014272001
Swedish industrial tools and compressors
Verify →
AB Volvo
SE556012579001
Swedish manufacturer of trucks, buses and construction equipment
Verify →
Check a Sweden VAT Number
Enter a moms number starting with SE to verify it against the official VIES database.
Format: SE + 10 digits + 01
Validate a Sweden SE VAT number via API
Get Sweden VAT rates via API — free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/SE"
{
"countryCode": "SE",
"countryName": "Sweden",
"vatName": "Mervärdesskatt",
"vatAbbr": "moms",
"standardRate": 25,
"reducedRates": [
12,
6
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "SE + 10 digits + 01",
"vatNumberPattern": "^SE\\d{10}01$",
"updatedAt": "2026-08-13"
}Get Sweden 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('SE')
console.log(rate.standard) // SE standard VAT rate{
"country": "Sweden",
"currency": "SEK",
"eu_member": true,
"vat_name": "Mervärdesskatt",
"vat_abbr": "moms",
"standard": 25,
"reduced": [
6,
12
],
"super_reduced": null,
"parking": null,
"format": "SE + 10 digits + 01",
"pattern": "^SE\\d{10}01$"
}Validate Sweden SE VAT numbers
Requires API keycurl "https://api.vatnode.dev/v1/vat/SE556703748501" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"valid": true,
"vatId": "SE556703748501",
"countryCode": "SE",
"companyName": "Spotify AB",
"companyAddress": null,
"companyRegistrationDate": null,
"companyForm": null,
"industryDescription": null,
"registryCode": null,
"registryCodeName": null,
"verifiedAt": "2026-04-25T12:00:00.000Z",
"checkId": "019dc41e-d64d-7255-8ed7-cf5443103cd8",
"countryName": "Sweden",
"countryVat": {
"vatName": "Mervärdesskatt",
"vatAbbr": "moms",
"currency": "SEK",
"standardRate": 25,
"reducedRates": [
12,
6
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "SE + 10 digits + 01",
"vatNumberPattern": "^SE\\d{10}01$",
"countryVatUpdatedAt": "2026-08-13"
},
"consultationNumber": null
}Frequently Asked Questions
What is the VAT number format in Sweden?▾
VAT numbers in Sweden follow the format: SE + 10 digits + 01. Example: SE123456789001. VAT numbers are not case-sensitive — lowercase input is automatically normalised.
What is the VAT number regex pattern in Sweden?▾
Use this regular expression to validate VAT numbers in Sweden moms number format locally:
^SE\d{10}01$Test against the uppercase number. Format validation catches typos locally — always follow with a VIES check to confirm the number is active.
How do I validate a VAT number in Sweden programmatically?▾
Send a GET request to https://api.vatnode.dev/v1/vat/{vatId} with your Authorization: Bearer header. The API checks the number against the official EU VIES database and returns a JSON response with a valid field, company name, address, and current moms rates. Free plan available — 100 requests/month, no credit card required.
What does moms stand for in Sweden?▾
moms stands for Mervärdesskatt — the Swedish name for Value Added Tax (VAT). It appears on Swedish invoices and tax documents.
VAT Number Formats for Other EU Countries
Validate Sweden VAT numbers in your app
Use the vatnode API to automate moms validation in your invoicing or checkout flow. Free plan available, no credit card required.