Belgium VAT Number Format (BE0123456789)
Belasting over de toegevoegde waarde (BTW) number structure, regex & verified examples
Everything you need to know about Belasting over de toegevoegde waarde (BTW) numbers in Belgium โ they follow the pattern BE + 0/1 + 9 digits (e.g. BE0123456789), and can be verified against VIES. For the rates themselves, see Belgium VAT rates and their history. Building a check into your app? See the Belgium VAT API.
VAT Number Format
Structure
BE + 0/1 + 9 digitsExample format
BE0123456789Regex
^BE[01]\d{9}$VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
More on Belgium
- Belgium VAT rates and historyCurrent standard and reduced rates, and every past change.
- Belgium VAT validation APIEndpoint, response fields and code samples for this country.
- Belgium Reverse charge rulesWhen to zero-rate a cross-border B2B invoice, and what to write on it.
- Belgium VIES uptimeAvailability of this country in the Commission database, sampled continuously.
What we return for Belgium
- 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 Belgium VAT Numbers
Anheuser-Busch InBev SA
BE0417497106
World's largest beer producer
Verify โ
Proximus SA
BE0202239951
Belgian incumbent telecom operator
Verify โ
Colruyt Group NV
BE0400378485
Belgium's largest supermarket group
Verify โ
UCB SA
BE0403053608
Belgian global biopharmaceutical company
Verify โ
Solvay SA
BE0403091220
Belgian multinational chemical company
Verify โ
Telenet Group NV
BE0473416418
Belgian cable and broadband provider
Verify โ
Check a Belgium VAT Number
Enter a BTW number starting with BE to verify it against the official VIES database.
Format: BE + 0/1 + 9 digits
Validate a Belgium BE VAT number via API
Get Belgium VAT rates via API โ free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/BE"
{
"countryCode": "BE",
"countryName": "Belgium",
"vatName": "Belasting over de toegevoegde waarde",
"vatAbbr": "BTW",
"standardRate": 21,
"reducedRates": [
12,
6
],
"superReducedRate": null,
"parkingRate": 12,
"vatNumberFormat": "BE + 0/1 + 9 digits",
"vatNumberPattern": "^BE[01]\\d{9}$",
"updatedAt": "2026-08-13"
}Get Belgium 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('BE')
console.log(rate.standard) // BE standard VAT rate{
"country": "Belgium",
"currency": "EUR",
"eu_member": true,
"vat_name": "Belasting over de toegevoegde waarde",
"vat_abbr": "BTW",
"standard": 21,
"reduced": [
6,
12
],
"super_reduced": null,
"parking": 12,
"format": "BE + 0/1 + 9 digits",
"pattern": "^BE[01]\\d{9}$"
}Validate Belgium BE VAT numbers
Requires API keycurl "https://api.vatnode.dev/v1/vat/BE0417497106" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"valid": true,
"vatId": "BE0417497106",
"countryCode": "BE",
"companyName": "Anheuser-Busch InBev SA",
"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": "Belgium",
"countryVat": {
"vatName": "Belasting over de toegevoegde waarde",
"vatAbbr": "BTW",
"currency": "EUR",
"standardRate": 21,
"reducedRates": [
12,
6
],
"superReducedRate": null,
"parkingRate": 12,
"vatNumberFormat": "BE + 0/1 + 9 digits",
"vatNumberPattern": "^BE[01]\\d{9}$",
"countryVatUpdatedAt": "2026-08-13"
},
"consultationNumber": null
}Frequently Asked Questions
What is the VAT number format in Belgium?โพ
VAT numbers in Belgium follow the format: BE + 0/1 + 9 digits. Example: BE0123456789. VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
What is the VAT number regex pattern in Belgium?โพ
Use this regular expression to validate VAT numbers in Belgium BTW number format locally:
^BE[01]\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 Belgium 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 BTW rates. Free plan available โ 100 requests/month, no credit card required.
What does BTW stand for in Belgium?โพ
BTW stands for Belasting over de toegevoegde waarde โ the Belgian name for Value Added Tax (VAT). It appears on Belgian invoices and tax documents.
VAT Number Formats for Other EU Countries
Validate Belgium VAT numbers in your app
Use the vatnode API to automate BTW validation in your invoicing or checkout flow. Free plan available, no credit card required.