Austria VAT Numbers
Format, rates & examples
Everything you need to know about Umsatzsteuer (USt) numbers in Austria โ format rules, current rates, and real company examples you can verify against VIES.
VAT Number Format
Structure
ATU + 8 digitsExample format
ATU12345678Regex
^ATU\d{8}$VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
Current VAT Rates
Standard
20%
Reduced
10%
Reduced
13%
Reduced
19%
Rates from EU Commission TEDB ยท Updated 2026-05-12
What we return for Austria
- 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 Austria VAT Numbers
Red Bull GmbH
ATU33864707
Austrian energy drink company
Verify โ
OMV Aktiengesellschaft
ATU14189108
Austrian integrated oil and gas company
Verify โ
UniCredit Bank Austria AG
ATU51507409
Austrian subsidiary of UniCredit Group
Verify โ
Raiffeisen Bank International AG
ATU57531200
Austrian banking group for Central and Eastern Europe
Verify โ
Erste Group Bank AG
ATU15361506
Austria's second-largest bank
Verify โ
Verbund AG
ATU14703908
Austria's largest electricity producer (hydro & renewables)
Verify โ
Check a Austria VAT Number
Enter a USt number starting with AT to verify it against the official VIES database.
Format: ATU + 8 digits
Austria AT VAT โ rates & validation via API
Get Austria VAT rates via API โ free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/AT"
{
"countryCode": "AT",
"countryName": "Austria",
"vatName": "Umsatzsteuer",
"vatAbbr": "USt",
"standardRate": 20,
"reducedRates": [
19,
13,
10
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "ATU + 8 digits",
"vatNumberPattern": "^ATU\\d{8}$",
"updatedAt": "2026-05-12"
}Get Austria 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('AT')
console.log(rate.standard) // AT standard VAT rate{
"country": "Austria",
"currency": "EUR",
"eu_member": true,
"vat_name": "Umsatzsteuer",
"vat_abbr": "USt",
"standard": 20,
"reduced": [
10,
13,
19
],
"super_reduced": null,
"parking": null,
"format": "ATU + 8 digits",
"pattern": "^ATU\\d{8}$"
}Validate Austria AT VAT numbers
Requires API keycurl "https://api.vatnode.dev/v1/vat/ATU33864707" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"valid": true,
"vatId": "ATU33864707",
"countryCode": "AT",
"companyName": "Red Bull GmbH",
"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": "Austria",
"countryVat": {
"vatName": "Umsatzsteuer",
"vatAbbr": "USt",
"currency": "EUR",
"standardRate": 20,
"reducedRates": [
19,
13,
10
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "ATU + 8 digits",
"vatNumberPattern": "^ATU\\d{8}$",
"countryVatUpdatedAt": "2026-05-12"
},
"consultationNumber": null
}Frequently Asked Questions
What is the VAT number format in Austria?โพ
VAT numbers in Austria follow the format: ATU + 8 digits. Example: ATU12345678. VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
What is the VAT number regex pattern in Austria?โพ
Use this regular expression to validate VAT numbers in Austria USt number format locally:
^ATU\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 USt rate in Austria?โพ
The standard USt rate in Austria is 20%. Reduced rates: 10%, 13%, 19%. Rates are sourced from the EU Commission TEDB and updated daily.
How do I validate a VAT number in Austria 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 USt rates. Free plan available โ 100 requests/month, no credit card required.
What does USt stand for in Austria?โพ
USt stands for Umsatzsteuer โ the Austria name for Value Added Tax (VAT). It appears on Austria invoices and tax documents.
Validate Austria VAT numbers in your app
Use the vatnode API to automate USt validation in your invoicing or checkout flow. Free plan available, no credit card required.