How to Monitor Austrian Insolvencies Without a Government License
Austrian corporate insolvencies just hit their fifth consecutive year of increase. In 2025, 6,809 companies filed for bankruptcy - up 4% from 2024, which itself saw a 23% surge over 2023. If you are screening Austrian counterparties for credit risk, doing M&A due diligence, or managing a lending portfolio in the DACH region, you need programmatic access to this data.
Here is the problem: the official source has a bureaucratic lock on its API.
The Ediktsdatei: Austria's Insolvency Registry
Austria publishes all bankruptcy, reorganization, and debt settlement proceedings through the Ediktsdatei (Insolvenzdatei), maintained by the Federal Ministry of Justice at edikte.justiz.gv.at. This is the single source of truth for:
- Konkursverfahren -- bankruptcy proceedings (liquidation)
- Sanierungsverfahren -- reorganization / restructuring proceedings (the company continues operating)
- Schuldenregulierungsverfahren -- personal debt settlement proceedings
Each entry contains the debtor's name, case number, responsible court, insolvency administrator, filing deadlines for claims, and creditor meeting dates. This is exactly what you need for counterparty risk screening.
The IWG License Problem
The Austrian Ministry of Justice does provide an official API for the Ediktsdatei. But accessing it requires an IWG license (Informationsweiterverwendungsgesetz -- Information Reuse Act).
The application process is not developer-friendly:
- You need an ID Austria digital identity (Austrian citizen/resident authentication)
- You submit a formal application through the JustizOnline portal
- The Ministry reviews your use case and grants or denies access
- Even if approved, you operate under reuse restrictions and compliance obligations
For an international credit risk team or a fintech building automated KYC pipelines, this is a non-starter. You cannot just sign up and get an API key.
The Alternative: Scraping the Public Pages
The Ediktsdatei is freely searchable through the public web interface at edikte.justiz.gv.at. Anyone can look up insolvency cases by name, court, date range, or case number. The catch is that there is no official public API -- the data is served as HTML pages meant for human browsing.
We built a scraper that does exactly what the IWG-licensed API does, but reads from the public HTML pages instead. No license application, no ID Austria, no approval process.
Austria Ediktsdatei Insolvency Scraper on Apify
What the Scraper Returns
For each insolvency proceeding, you get structured JSON:
{
"debtorName": "Alpenbau GmbH",
"caseNumber": "17 S 45/25t",
"court": "Landesgericht Innsbruck",
"proceedingType": "Konkursverfahren",
"administrator": "Dr. Maria Schmidt",
"filingDeadline": "2025-06-15",
"creditorMeetingDate": "2025-07-01",
"state": "Tirol",
"url": "https://edikte.justiz.gv.at/edikte/..."
}
You can filter by:
- Search query -- debtor name, company name, or keyword
- Austrian state (Bundesland) -- Vorarlberg, Steiermark, Wien, etc.
- Date range -- proceedings filed between specific dates
Three Real Use Cases
1. Credit Risk Screening
A bank or trade credit insurer needs to check whether an Austrian customer or supplier has entered insolvency proceedings. Instead of manually searching the Ediktsdatei portal for each counterparty, you batch-query by company name and get instant results.
import requests
url = "https://api.apify.com/v2/acts/regdata~austria-ediktsdatei-scraper/runs"
payload = {
"searchQuery": "Alpenbau GmbH",
"searchByState": "all",
"maxResults": 20
}
headers = {"Authorization": "Bearer YOUR_APIFY_TOKEN"}
response = requests.post(url, json=payload, headers=headers)
2. Portfolio Monitoring
For loan portfolios or supplier networks with Austrian exposure, run a scheduled weekly scan. Any new insolvency filing involving your counterparties surfaces immediately -- before the next quarterly review catches it.
Set up an Apify schedule to run every Monday morning with a list of company names. Results go straight to your risk dashboard or Slack channel.
3. Due Diligence for M&A
Before acquiring an Austrian company or its assets, check whether the target, its subsidiaries, or its key officers appear in insolvency proceedings. The scraper's full-text search catches related entities that a simple name lookup might miss.
Why HTTP-Only Matters
This actor runs on 128MB RAM with no browser and no proxy. It makes direct HTTP requests to the Ediktsdatei search endpoint and parses the HTML response. This means:
- Works on the Apify Free plan (no paid subscription required)
- Fast execution -- typically under 30 seconds per search
- No residential proxy costs
- Lower compute unit consumption = cheaper to run at scale
If you are on the Free plan, you get $5/month in platform credits. At $0.005 per result, that is 1,000 insolvency checks per month before you pay anything.
Pricing
| Plan | Cost per Result |
|---|---|
| Free | $0.005 |
| Personal Pro+ | $0.003 |
Actor start cost: $0.005 (one-time per run). No hidden fees.
Complementary Tool: WKO Business Directory
If you are doing business in Austria, you may also want the WKO Firmen A-Z Scraper -- 620,000+ Austrian businesses with phone, email, website, and industry classification from the official Chamber of Commerce directory. Also has no official API. Also pay-per-result.
Together they cover the two most common Austrian business data workflows: "who is this company" (WKO) and "are they in trouble" (Ediktsdatei).
Quick Start
- Go to the actor page on Apify
- Click Try it -- no signup needed for a test run
- Enter a company name or leave the search field blank to get the latest filings
- Click Start and review the JSON output
- To integrate into your pipeline, use the API tab for cURL, Python, or Node.js code snippets
Austrian insolvencies are not slowing down. The data is public and free to browse. The only question is whether you are checking it manually, or programmatically.
All scrapers in the European Business Data Suite operate on pay-per-result pricing with no monthly subscription. 14 actors across Poland, Spain, Austria, and France covering company registries, financial statements, beneficial ownership, insolvency data, and more.
Top comments (0)