Finland VAT Numbers
Format, rates & examples
Everything you need to know about Arvonlisävero (ALV) numbers in Finland — format rules, current rates, and real company examples you can verify against VIES.
VAT Number Format
Structure
FI + 8 digitsExample format
FI12345678Regex
^FI\d{8}$VAT numbers are not case-sensitive — lowercase input is automatically normalised.
Current VAT Rates
Standard
25.5%
Reduced
10%
Reduced
13.5%
Rates from EU Commission TEDB · Updated 2026-05-12
What we return for Finland
- 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 Finland VAT Numbers
Nokia Oyj
FI01120389
Finnish telecom equipment manufacturer
Verify →
KONE Oyj
FI19274001
Global elevator and escalator company
Verify →
Wolt Oy
FI26466749
Food delivery platform (DoorDash)
Verify →
Elisa Oyj
FI01165106
Finnish telecom operator
Verify →
Kesko Oyj
FI01098628
Finnish retail conglomerate
Verify →
Fortum Oyj
FI14636114
Finnish energy company
Verify →
Check a Finland VAT Number
Enter a ALV number starting with FI to verify it against the official VIES database.
Format: FI + 8 digits
Finland FI VAT — rates & validation via API
Get Finland VAT rates via API — free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/FI"
{
"countryCode": "FI",
"countryName": "Finland",
"vatName": "Arvonlisävero",
"vatAbbr": "ALV",
"standardRate": 25.5,
"reducedRates": [
13.5,
10
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "FI + 8 digits",
"vatNumberPattern": "^FI\\d{8}$",
"updatedAt": "2026-05-12"
}Get Finland 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('FI')
console.log(rate.standard) // FI standard VAT rate{
"country": "Finland",
"currency": "EUR",
"eu_member": true,
"vat_name": "Arvonlisävero",
"vat_abbr": "ALV",
"standard": 25.5,
"reduced": [
10,
13.5
],
"super_reduced": null,
"parking": null,
"format": "FI + 8 digits",
"pattern": "^FI\\d{8}$"
}Validate Finland FI VAT numbers
Requires API keycurl "https://api.vatnode.dev/v1/vat/FI01120389" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"valid": true,
"vatId": "FI01120389",
"countryCode": "FI",
"companyName": "Nokia Oyj",
"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": "Finland",
"countryVat": {
"vatName": "Arvonlisävero",
"vatAbbr": "ALV",
"currency": "EUR",
"standardRate": 25.5,
"reducedRates": [
13.5,
10
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "FI + 8 digits",
"vatNumberPattern": "^FI\\d{8}$",
"countryVatUpdatedAt": "2026-05-12"
},
"consultationNumber": null
}Frequently Asked Questions
What is the VAT number format in Finland?▾
VAT numbers in Finland follow the format: FI + 8 digits. Example: FI12345678. VAT numbers are not case-sensitive — lowercase input is automatically normalised.
What is the VAT number regex pattern in Finland?▾
Use this regular expression to validate VAT numbers in Finland ALV number format locally:
^FI\d{8}$Test against the uppercase number. Format validation catches typos locally — always follow with a VIES check to confirm the number is active.
What is the standard ALV rate in Finland?▾
The standard ALV rate in Finland is 25.5%. Reduced rates: 10%, 13.5%. Rates are sourced from the EU Commission TEDB and updated daily.
How do I validate a VAT number in Finland 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 ALV rates. Free plan available — 100 requests/month, no credit card required.
What does ALV stand for in Finland?▾
ALV stands for Arvonlisävero — the Finland name for Value Added Tax (VAT). It appears on Finland invoices and tax documents.
Validate Finland VAT numbers in your app
Use the vatnode API to automate ALV validation in your invoicing or checkout flow. Free plan available, no credit card required.