Austria Firmenbuch Scraper - JustizOnline Company Registry avatar

Austria Firmenbuch Scraper - JustizOnline Company Registry

Pricing

Pay per event

Go to Apify Store
Austria Firmenbuch Scraper - JustizOnline Company Registry

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

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

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:

FieldDescription
fn_numberFirmenbuchnummer (FN) — unique registry number
legal_nameOfficial registered company name
legal_form_abbr / legal_form_nameLegal form (GmbH, AG, OG, etc.)
statusACTIVE or DELETED
domicileRegistered court/city
address_street / address_zip / address_cityCompany address
has_teilauszug / teilauszug_urlWhether a partial extract is available
auszug_price_eurPrice of the official Auszug document (EUR)
firmenbuch_detail_urlDirect link to the JustizOnline detail page
wko_name / wko_phone / wko_email / wko_websiteContact data from WKO (when enabled)
has_insolvency / insolvency_eventsInsolvency status from Ediktsdatei (when enabled)
scraped_atTimestamp

Input Parameters

ParameterTypeDefaultDescription
querystringrequiredCompany name or FN number to search for
modeselectby_nameby_name or by_fn_number
maxItemsinteger10Max records to return (up to 5,000)
includeWkobooleantrueEnrich with WKO phone/email/website
includeInsolvencybooleantrueCross-reference Ediktsdatei for insolvency events
proxyConfigurationproxydisabledOptional 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 (persons field) is always null in 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_name mode).