Malta VAT number: format and validation

By Remco from Avatcado

Format

MT followed by 8 digits. The local term is VAT registration number (VAT No, English) or Taxxa fuq il-Valur Mizjud (TVM, Maltese).

Pattern: /^\d{8}$/

  • Maltese VAT numbers are commonly printed with a hyphen after the fourth digit (MT1282-6209), so strip the hyphen before validating
  • Only Article 10 (standard) registrants receive an MT-prefixed number valid for intra-EU trade; Article 11 and 12 registrants get numbers without the MT prefix that do not validate in VIES

Example of a registered number: MT1282-6209

Check digit

Malta VAT numbers carry a check digit (Weighted MOD 37): The sum of the 8 digits multiplied by the weights 3,4,6,7,8,9,10,1 must be divisible by 37.

Check a Malta VAT number

Validated live against the Malta Tax and Customs Administration (MTCA) (official register).

Enter a VAT number to see the live API response

Validate via API

The same validation as an API call, with the example number above:

curl "https://api.avatcado.com/v1/validate?vat_number=MT12826209" \
  -H "Authorization: Bearer avat_live_your_api_key"
import Avatcado from "@avatcado/node";

const avatcado = new Avatcado("avat_live_your_api_key");
const { data, error } = await avatcado.vat.validate({
  vatNumber: "MT12826209",
});

if (data?.data.valid) {
  console.log(`Registered: ${data.data.company?.name}`);
}

Free tier includes 500 validations per month. Get an API key or read the API documentation.

Frequently asked questions

What is the difference between Article 10 and Article 11 VAT registration in Malta?

Article 10 is the standard registration: you charge VAT, deduct input VAT, and get an MT-prefixed number returned by VIES. Article 11 is the exempt registration for small undertakings; these businesses charge no VAT and their number has no MT prefix, so if a Maltese supplier's number fails VIES they may be Article 11 registered.

What is Malta's VAT registration threshold?

Malta's Article 11 exemption threshold is EUR 35,000 of annual turnover, a single unified threshold in effect since 1 January 2025. Above it, businesses must register under Article 10 with the MTCA; Malta's standard rate is 18 percent.

Related guides

VAT rate in Malta

The standard VAT rate in Malta is 18%. Reduced rates: 12%, 7%, 5%, 0%. See all Malta VAT rates.

Sources