GET /api/v1/cities/{slug}/insolvencies
Filed insolvencies per district (Regionalstatistik, Tier A)
Filed insolvencies per DISTRICT (German insolvency statistics, table 52411, annual total): unternehmensinsolvenzen (filed corporate insolvencies, table 52411-02) and uebrige_schuldner_insolvenzen (filed insolvencies of other debtors, table 52411-03; covers consumers, former self-employed and other natural persons, NOT only consumers) plus the reporting year (jahr, latest year with both values). Toggle off or no GENESIS credentials -> 200 source_status="disabled"; batch not run -> 200 source_status="not_ingested".
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
slug | path | yes | string |
Code samples
curl "https://infranode.dev/api/v1/cities/hamburg/insolvencies"const res = await fetch("https://infranode.dev/api/v1/cities/hamburg/insolvencies");
const data = await res.json();
console.log(data);import httpx
res = httpx.get("https://infranode.dev/api/v1/cities/hamburg/insolvencies")
res.raise_for_status()
print(res.json())