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.

EU Member StateUSt โ€” UmsatzsteuerEUR

VAT Number Format

Structure

ATU + 8 digits

Example format

ATU12345678

Regex

^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 โ†’

Check a Austria VAT Number

Enter a USt number starting with AT to verify it against the official VIES database.

Format: ATU + 8 digits

Example:

Austria AT VAT โ€” rates & validation via API

Get Austria VAT rates via API โ€” free, no key

No API key required
Request
curl "https://api.vatnode.dev/v1/rates/AT"
Response200 OK
{
  "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"
}

View full rates API reference โ†’

Get Austria 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('AT')
console.log(rate.standard) // AT standard VAT rate
getRate() result200 OK
{
  "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}$"
}

View package on GitHub โ†’

Validate Austria AT VAT numbers

Requires API key
Request
curl "https://api.vatnode.dev/v1/vat/ATU33864707" \
  -H "Authorization: Bearer YOUR_API_KEY"
Response200 OK
{
  "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
}

View full API response schema โ†’

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.