balance_sheet_accounts · profit_and_loss_account · annual_financial_statements
Reference of the statement features of fetch-organization: structured balance sheets and profit-and-loss statements as account trees, plus complete annual statements as text. Amounts are in euros; item names follow the original filing.
balance_sheet_accounts (3 credits)
| Key | Type | Description |
|---|---|---|
| [] | array | One entry per fiscal year. |
| [].year | number | Fiscal year. |
| [].balance_sheet_accounts | array | Account tree; top level: assets side and liabilities side. |
| [].balance_sheet_accounts[].name | object | Item name: de, en and in_report (verbatim wording of the filing). |
| [].balance_sheet_accounts[].value | number | Amount of the item in euros. |
| [].balance_sheet_accounts[].children | array | Sub-items with the same structure (name, value, children) - nested to arbitrary depth. |
profit_and_loss_account (3 credits)
| Key | Type | Description |
|---|---|---|
| [] | array | One entry per fiscal year. |
| [].year | number | Fiscal year. |
| [].profit_and_loss_accounts | array | P&L items as a tree in the structure of the filing. |
| [].profit_and_loss_accounts[].name | object | Item name: de, en and in_report (verbatim, incl. outline letters such as "a) Löhne und Gehälter"). |
| [].profit_and_loss_accounts[].value | number | null | Amount of the item in euros; expenses negative. null for pure structuring rows. |
| [].profit_and_loss_accounts[].children | array | Sub-items with the same structure. |
annual_financial_statements (5 credits)
| Key | Type | Description |
|---|---|---|
| [] | array | One entry per published statement. |
| [].year | number | Fiscal year of the statement. |
| [].document_type | string | Statement type. Observed values: Jahresabschluss, Konzernabschluss. |
| [].document_title | string | Title of the document, e.g. "Jahresabschluss zum 31. Dezember 2023". |
| [].document_date | string | Publication or document date. |
| [].language | string | Language of the document. |
| [].document_md | string | Complete statement as Markdown text (suitable for LLM processing). |
annual_financial_statements__html (5 credits)
| Key | Type | Description |
|---|---|---|
| [] | array | Same entries as annual_financial_statements, but with document_html instead of document_md. |
| [].document_html | string | Complete statement as self-contained renderable HTML. |