Malta VAT Numbers
Format, rates & examples
Everything you need to know about Taxxa tal-Valur Miżjud (VAT) numbers in Malta — format rules, current rates, and real company examples you can verify against VIES.
VAT Number Format
Structure
MT + 8 digitsExample format
MT12345678Regex
^MT\d{8}$VAT numbers are not case-sensitive — lowercase input is automatically normalised.
Current VAT Rates
Standard
18%
Reduced
5%
Reduced
7%
Parking
12%
Rates from EU Commission TEDB · Updated 2026-05-12
What we return for Malta
- 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 Malta VAT Numbers
GO p.l.c.
MT12826209
Malta's main telecom, broadband and TV provider
Verify →
Melita Limited
MT10210507
Malta's leading cable, broadband and mobile operator
Verify →
APS Bank p.l.c.
MT13043536
Maltese bank focused on ethical and sustainable banking
Verify →
Multitude Bank p.l.c.
MT28581016
Maltese fin-tech banking platform
Verify →
Check a Malta VAT Number
Enter a VAT number starting with MT to verify it against the official VIES database.
Format: MT + 8 digits
Malta MT VAT — rates & validation via API
Get Malta VAT rates via API — free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/MT"
{
"countryCode": "MT",
"countryName": "Malta",
"vatName": "Taxxa tal-Valur Miżjud",
"vatAbbr": "VAT",
"standardRate": 18,
"reducedRates": [
7,
5
],
"superReducedRate": null,
"parkingRate": 12,
"vatNumberFormat": "MT + 8 digits",
"vatNumberPattern": "^MT\\d{8}$",
"updatedAt": "2026-05-12"
}Get Malta 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('MT')
console.log(rate.standard) // MT standard VAT rate{
"country": "Malta",
"currency": "EUR",
"eu_member": true,
"vat_name": "Taxxa tal-Valur Miżjud",
"vat_abbr": "VAT",
"standard": 18,
"reduced": [
5,
7
],
"super_reduced": null,
"parking": 12,
"format": "MT + 8 digits",
"pattern": "^MT\\d{8}$"
}Validate Malta MT VAT numbers
Requires API keycurl "https://api.vatnode.dev/v1/vat/MT12826209" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"valid": true,
"vatId": "MT12826209",
"countryCode": "MT",
"companyName": "GO p.l.c.",
"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": "Malta",
"countryVat": {
"vatName": "Taxxa tal-Valur Miżjud",
"vatAbbr": "VAT",
"currency": "EUR",
"standardRate": 18,
"reducedRates": [
7,
5
],
"superReducedRate": null,
"parkingRate": 12,
"vatNumberFormat": "MT + 8 digits",
"vatNumberPattern": "^MT\\d{8}$",
"countryVatUpdatedAt": "2026-05-12"
},
"consultationNumber": null
}Frequently Asked Questions
What is the VAT number format in Malta?▾
VAT numbers in Malta follow the format: MT + 8 digits. Example: MT12345678. VAT numbers are not case-sensitive — lowercase input is automatically normalised.
What is the VAT number regex pattern in Malta?▾
Use this regular expression to validate VAT numbers in Malta VAT number format locally:
^MT\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 VAT rate in Malta?▾
The standard VAT rate in Malta is 18%. Reduced rates: 5%, 7%. Parking rate: 12%. Rates are sourced from the EU Commission TEDB and updated daily.
How do I validate a VAT number in Malta 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 VAT rates. Free plan available — 100 requests/month, no credit card required.
What does VAT stand for in Malta?▾
VAT stands for Taxxa tal-Valur Miżjud — the Malta name for Value Added Tax (VAT). It appears on Malta invoices and tax documents.
Validate Malta VAT numbers in your app
Use the vatnode API to automate VAT validation in your invoicing or checkout flow. Free plan available, no credit card required.