🇦🇹Austria Federal länders
All 9 Austria subdivisions with ISO 3166-2:AT codes - Europe / Western Europe
Total
9 subdivisions
Types
Federal länder
ISO Standard
ISO 3166-2:AT
Code Example
import { subdivision } from '@koshmoney/countries';
// Get all Austria subdivisions
const subs = subdivision.getByCountry('AT');
// => 9 subdivisions
// Look up a specific subdivision
subdivision.get('AT-1');
// => { code: 'AT-1', name: 'Burgenland', type: 'Federal länder' }
// Validate a subdivision code
subdivision.isValidCode('AT-1'); // true
subdivision.isValidRegion('AT', '1'); // trueTree-Shaking Tip
Import only Austria subdivisions to minimize bundle size:
// Import only Austria subdivisions for smaller bundles
import { subdivisions } from '@koshmoney/countries/subdivision/AT';
Object.entries(subdivisions);
// => 9 entriesAll Austria Federal länders
| Code | Name | Type |
|---|---|---|
| AT-1 | Burgenland | Federal länder |
| AT-2 | Kärnten | Federal länder |
| AT-3 | Niederösterreich | Federal länder |
| AT-4 | Oberösterreich | Federal länder |
| AT-5 | Salzburg | Federal länder |
| AT-6 | Steiermark | Federal länder |
| AT-7 | Tirol | Federal länder |
| AT-8 | Vorarlberg | Federal länder |
| AT-9 | Wien | Federal länder |
FAQ
- How many subdivisions does Austria have?
- Austria has 9 subdivisions defined in ISO 3166-2:AT, including 9 federal länders.
- What is the ISO 3166-2 code format for Austria?
- Austria subdivision codes follow the format AT-XX, where AT is the country's alpha-2 code and XX is the subdivision identifier. For example, AT-1 represents Burgenland.
- How to get Austria subdivisions in JavaScript?
- Install
@koshmoney/countriesvia npm, then usesubdivision.getByCountry('AT')to get all 9 subdivisions.
Use Austria subdivision data in your project
Get all 9 Austria subdivisions with ISO 3166-2 codes, plus countries, currencies, postal codes, and more.
npm install @koshmoney/countries