Estonia VAT Number Format (EE123456789)

Käibemaks (km) number structure, regex & verified examples

Everything you need to know about Käibemaks (km) numbers in Estonia — they follow the pattern EE + 9 digits (e.g. EE123456789), and can be verified against VIES. For the rates themselves, see Estonia VAT rates and their history. Building a check into your app? See the Estonia VAT API.

EU Member StatekmKäibemaksEUR

VAT Number Format

Structure

EE + 9 digits

Example format

EE123456789

Regex

^EE\d{9}$

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

What we return for Estonia

  • 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 →

Check an Estonia VAT Number

Enter a km number starting with EE to verify it against the official VIES database.

Format: EE + 9 digits

Example:

Validate an Estonia EE VAT number via API

Get Estonia VAT rates via API — free, no key

No API key required
Request
curl "https://api.vatnode.dev/v1/rates/EE"
Response200 OK
{
  "countryCode": "EE",
  "countryName": "Estonia",
  "vatName": "Käibemaks",
  "vatAbbr": "km",
  "standardRate": 24,
  "reducedRates": [
    13,
    9
  ],
  "superReducedRate": null,
  "parkingRate": null,
  "vatNumberFormat": "EE + 9 digits",
  "vatNumberPattern": "^EE\\d{9}$",
  "updatedAt": "2026-08-13"
}

View full rates API reference

Get Estonia 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('EE')
console.log(rate.standard) // EE standard VAT rate
getRate() result200 OK
{
  "country": "Estonia",
  "currency": "EUR",
  "eu_member": true,
  "vat_name": "Käibemaks",
  "vat_abbr": "km",
  "standard": 24,
  "reduced": [
    9,
    13
  ],
  "super_reduced": null,
  "parking": null,
  "format": "EE + 9 digits",
  "pattern": "^EE\\d{9}$"
}

View package on GitHub

Validate Estonia EE VAT numbers

Requires API key
Request
curl "https://api.vatnode.dev/v1/vat/EE100220641" \
  -H "Authorization: Bearer YOUR_API_KEY"
Response200 OK
{
  "valid": true,
  "vatId": "EE100220641",
  "countryCode": "EE",
  "companyName": "Tallink Grupp AS",
  "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": "Estonia",
  "countryVat": {
    "vatName": "Käibemaks",
    "vatAbbr": "km",
    "currency": "EUR",
    "standardRate": 24,
    "reducedRates": [
      13,
      9
    ],
    "superReducedRate": null,
    "parkingRate": null,
    "vatNumberFormat": "EE + 9 digits",
    "vatNumberPattern": "^EE\\d{9}$",
    "countryVatUpdatedAt": "2026-08-13"
  },
  "consultationNumber": null
}

View full API response schema

Frequently Asked Questions

What is the VAT number format in Estonia?

VAT numbers in Estonia follow the format: EE + 9 digits. Example: EE123456789. VAT numbers are not case-sensitive — lowercase input is automatically normalised.

What is the VAT number regex pattern in Estonia?

Use this regular expression to validate VAT numbers in Estonia km number format locally:

^EE\d{9}$

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 Estonia 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 km rates. Free plan available — 100 requests/month, no credit card required.

What does km stand for in Estonia?

km stands for Käibemaks — the Estonian name for Value Added Tax (VAT). It appears on Estonian invoices and tax documents.

Validate Estonia VAT numbers in your app

Use the vatnode API to automate km validation in your invoicing or checkout flow. Free plan available, no credit card required.