Austria Firmenbuch Scraper - JustizOnline Company Registry
Pricing
Pay per event
Austria Firmenbuch Scraper - JustizOnline Company Registry
Search the Austrian Firmenbuch (official commercial register) via JustizOnline. Returns company name, FN number, address, legal form, status, and optionally WKO contact data (phone, email, website) and Ediktsdatei insolvency cross-reference.
Pricing
Pay per event
Rating
0.0
(0)
Developer
BowTiedRaccoon
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
Austria Firmenbuch Scraper — JustizOnline Company Registry
Search the Austrian Firmenbuch (official commercial register) and retrieve structured company data. Supports lookup by company name or exact FN number (Firmenbuchnummer). Optionally enriches results with contact data from WKO Firmen A-Z and insolvency cross-reference from the Ediktsdatei.
What You Get
Each record includes:
| Field | Description |
|---|---|
fn_number | Firmenbuchnummer (FN) — unique registry number |
legal_name | Official registered company name |
legal_form_abbr / legal_form_name | Legal form (GmbH, AG, OG, etc.) |
status | ACTIVE or DELETED |
domicile | Registered court/city |
address_street / address_zip / address_city | Company address |
has_teilauszug / teilauszug_url | Whether a partial extract is available |
auszug_price_eur | Price of the official Auszug document (EUR) |
firmenbuch_detail_url | Direct link to the JustizOnline detail page |
wko_name / wko_phone / wko_email / wko_website | Contact data from WKO (when enabled) |
has_insolvency / insolvency_events | Insolvency status from Ediktsdatei (when enabled) |
scraped_at | Timestamp |
Input Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
query | string | required | Company name or FN number to search for |
mode | select | by_name | by_name or by_fn_number |
maxItems | integer | 10 | Max records to return (up to 5,000) |
includeWko | boolean | true | Enrich with WKO phone/email/website |
includeInsolvency | boolean | true | Cross-reference Ediktsdatei for insolvency events |
proxyConfiguration | proxy | disabled | Optional proxy (not required — JustizOnline is publicly accessible) |
Example Inputs
Search by company name:
{"mode": "by_name","query": "OMV","maxItems": 10,"includeWko": true,"includeInsolvency": true}
Lookup by FN number:
{"mode": "by_fn_number","query": "93363z","maxItems": 1,"includeWko": false,"includeInsolvency": false}
Example Output
{"fn_number": "93363z","company_id": "1234567","legal_name": "OMV Aktiengesellschaft","legal_form_abbr": "AG","legal_form_name": "Aktiengesellschaft","status": "ACTIVE","domicile": "Wien","address_street": "Trabrennstraße 6-8","address_zip": "1020","address_city": "Wien","persons": null,"has_teilauszug": true,"teilauszug_url": "https://justizonline.gv.at/jop/...","auszug_price_eur": 14.0,"wko_name": "OMV AG","wko_url": "https://firmen.wko.at/omv-ag/wien/","wko_phone": "+43140440","wko_email": "info@omv.com","wko_website": "https://www.omv.com","wko_address": "Trabrennstraße 6-8, 1020 Wien","has_insolvency": false,"insolvency_event_count": 0,"insolvency_events": "","firmenbuch_detail_url": "https://justizonline.gv.at/jop/web/firmenbuchabfrage/93363z","scraped_at": "2026-05-16T01:00:00.000Z"}
Data Sources
- JustizOnline Firmenbuch (
justizonline.gv.at) — Official Austrian Ministry of Justice company registry. Free public API, no authentication required for basic metadata. - WKO Firmen A-Z (
firmen.wko.at) — Austrian Federal Economic Chamber business directory. Provides contact details not available in Firmenbuch. - Ediktsdatei — JustizOnline insolvency feed. Best-effort cross-reference; some companies may not appear even if insolvency proceedings exist.
Notes
- Officers/persons data (
personsfield) is alwaysnullin the free Firmenbuch API tier. Full officer data requires a paid Teilauszug document download. - WKO matching is slug-based. Companies with unusual names or no WKO listing will return empty WKO fields.
- Insolvency check is best-effort and uses the Ediktsdatei experimental API. Missing data does not imply no insolvency.
- Results are returned in the order provided by the Firmenbuch search API (active companies first for
by_namemode).