API ドキュメント

REST API を通じてドイツの破産公告を毎日取得し、お客様のシステムで自動的に処理できます。

認証

すべてのリクエストには X-API-Key ヘッダーに個人用 API キーが必要です。キーは API アクセスの開始後に発行されます。

X-API-Key: YOUR_API_KEY

エンドポイント

単一の GET エンドポイントが、指定した日または期間の公告を返します。

GET https://germanyinsolvencies.com/api/v1/filings

パラメータ

すべてのパラメータは任意です。日付を指定しない場合は前日のデータが返されます。1 回のリクエストの最大期間は 31 日です。

Parameter Description
dateSingle day, format YYYY-MM-DD. Defaults to yesterday.
date_from / date_toDate range (max. 31 days per request).
typesComma-separated list of type aliases or codes. Omit for all types.
formatjson (default) or csv.

公告の種類

types パラメータで絞り込みます。複数の値はカンマで区切ります。省略するとすべての種類が返されます。

types= Code Bekanntmachungsart
sicherung0Sicherungsmaßnahmen / Protective measures
abweisung1Abweisungen mangels Masse / Dismissal for lack of assets
eroeffnung2Eröffnungen / Opening of proceedings
entscheidung3Entscheidungen im Verfahren / Decisions in proceedings
sonstiges4Sonstiges / Other
entscheidung_aufhebung5Entscheidungen nach Aufhebung / Decisions after termination
verteilungsverzeichnis6Verteilungsverzeichnisse (§ 188 InsO) / Distribution lists
restschuldbefreiung7Restschuldbefreiung / Discharge of residual debt
insolvenzplan8Überwachte Insolvenzpläne / Supervised insolvency plans

リクエスト例

例:ある日のすべての開始・保全措置・棄却を JSON 形式で取得します。

curl -H "X-API-Key: YOUR_API_KEY" \
  "https://germanyinsolvencies.com/api/v1/filings?date=2026-06-08&types=eroeffnung,sicherung,abweisung"

レスポンス

レスポンスには件数と公告の配列が含まれます。format=csv を指定すると CSV ファイルを受け取れます。

{
  "date_from": "2026-06-08",
  "date_to": "2026-06-08",
  "types": ["0", "1", "2"],
  "count": 142,
  "filings": [
    {
      "date": "2026-06-08",
      "type": "Eröffnungen",
      "type_code": "2",
      "name": "Beispiel GmbH",
      "sitz": "Berlin",
      "court": "Charlottenburg (Berlin)",
      "aktenzeichen": "36a IN 1234/26",
      "bundesland": "Berlin",
      "register": "HRB 12345",
      "text": "Im Insolvenzverfahren ..."
    }
  ]
}

エラー

エラーは適切な HTTP ステータスコードとともに JSON で返されます。

HTTP error
401missing_api_key
403invalid_api_key, subscription_expired
400bad_date, bad_type, range_too_large
500server_error

アクセスを取得

API アクセスは個別に提供されます。ご利用目的をお知らせいただければ、キーを発行いたします。

お問い合わせ