1. Companies
FinancialReports
  • FinancialReports API Documentation
  • Changelog
  • Python SDK
  • Companies
    • List Companies
      GET
    • Retrieve Company Details
      GET
    • Retrieve Company Financials
      GET
    • Predict Next Annual Report
      GET
  • Filings
    • List Filings
      GET
    • Retrieve Filing Details
      GET
    • Retrieve Filing History (Audit Trail)
      GET
    • Retrieve Filing Markdown
      GET
  • Filing Types
    • The Financial Reporting Classification Framework (FRCF)
    • List Filing Types
      GET
    • Retrieve Filing Type
      GET
  • Filing Categories
    • List Filing Categories
      GET
    • Retrieve Filing Category
      GET
  • Languages
    • Understanding Language Codes
    • List Languages
      GET
    • Retrieve Language
      GET
  • ISIC Classifications
    • Understanding ISIC Classification
    • List ISIC Classes
      GET
    • Retrieve ISIC Class
      GET
    • List ISIC Divisions
      GET
    • Retrieve ISIC Division
      GET
    • List ISIC Groups
      GET
    • Retrieve ISIC Group
      GET
    • List ISIC Sections
      GET
    • Retrieve ISIC Section
      GET
  • Countries
    • Understanding Country Codes
    • List Countries
    • Retrieve Country
  • Sources
    • Understanding Data Sources
    • List Data Sources
    • Retrieve Data Source
  • Watchlist
    • Get User's Watchlist
    • Add Company to Watchlist
    • Remove Company from Watchlist
    • Bulk Add Companies to Watchlist
    • Bulk Remove Companies from Watchlist
  • Webhooks (Management)
    • List Webhooks
    • Create Webhook
    • Retrieve Webhook
    • Update Webhook
    • Partial Update Webhook
    • Delete Webhook
    • List Delivery Logs
    • Retrieve Delivery Detail
    • Replay Delivery
    • Regenerate Secret Key
    • Test Webhook
    • Filing Processed Event
    • Filing Received Event
  • ISINs
    • List ISINs
    • Retrieve ISIN
  • Financial Data
    • List Line Item Definitions
    • Retrieve Line Item Definition
  • Schemas
    • Company
    • Language
    • Filing
    • Source
    • BulkWatchlist
    • BulkWatchlistResponse
    • CompanyMinimal
    • Country
    • ErrorDetail
    • CompanyFinancialStatement
    • DesignatedSponsor
    • FilingType
    • FilingSummary
    • ISICClass
    • FilingCategory
    • ISICDivision
    • CurrencyCompact
    • FilingProcessedPayload
    • ISICGroup
    • FilingHistory
    • EntityLegalForm
    • ISICSection
    • PaginatedFilingTypeList
    • PaginatedCompanyMinimalList
    • PaginatedFilingSummaryList
    • PaginatedCountryList
    • PaginatedISICClassList
    • ListedStockExchange
    • PaginatedISICDivisionList
    • ISIN
    • PaginatedSourceList
    • PaginatedISICGroupList
    • FiscalPeriodEnum
    • PaginatedISICSectionList
    • FinancialLineItemCompact
    • NextAnnualReport
    • PaginatedFilingCategoryList
    • PaginatedLanguageList
    • WatchlistAction
    • WatchlistCompany
    • Jurisdiction
    • PaginatedFilingHistoryList
    • WatchlistResponse
    • LineItemDefinition
    • PaginatedWebhookList
    • PaginatedISINList
    • NullEnum
    • PatchedWebhook
    • PaginatedWebhookDeliveryList
    • StockIndex
    • ProcessingStatusEnum
    • PaginatedCompanyFinancialStatementList
    • StatusEnum
    • Webhook
    • WebhookCompanyPayload
    • WebhookFilingPayload
    • WebhookDelivery
    • WebhookSecret
    • PaginatedLineItemDefinitionList
    • StatementTypeEnum
    • WebhookDeliveryDetail
  1. Companies

Retrieve Company Financials

GET
/companies/{id}/financials/
Returns deduplicated, standardized financial KPIs for a company, structured by fiscal period and statement type.
When multiple filings report the same period (e.g. an annual report and its ESEF package), the data from the most recently published filing is returned.
Use the depth and parent_code fields on each line item to render the Capital IQ-style statement hierarchy.
Access Level Required: Requires RAG / Agent (Level 3).

Request

Path Params

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.financialreports.eu/companies//financials/?fiscal_period&fiscal_year&fiscal_year_from&fiscal_year_to&line_items&statement_type' \
--header 'x-api-key;'

Responses

🟢200
application/json
Body

Example
{
    "count": 123,
    "next": "http://api.example.org/accounts/?page=4",
    "previous": "http://api.example.org/accounts/?page=2",
    "results": [
        [
            {
                "fiscal_year": 2024,
                "fiscal_period": "FY",
                "period_start_date": "2024-01-01",
                "period_end_date": "2024-12-31",
                "statement_type": "IS",
                "statement_type_display": "Income Statement",
                "currency": {
                    "code": "EUR",
                    "name": "Euro",
                    "symbol": "€"
                },
                "source_filing_id": 32537845,
                "source_filing_release_date": "2025-03-15T10:00:00Z",
                "line_items": [
                    {
                        "code": "revenue",
                        "name": "Total Revenue",
                        "statement_type": "IS",
                        "depth": 0,
                        "parent_code": null,
                        "sort_order": 10,
                        "value": "699767000.00",
                        "raw_value": "699767.000000",
                        "scale": "thousands"
                    },
                    {
                        "code": "cost_of_goods_sold",
                        "name": "Cost of Goods Sold",
                        "statement_type": "IS",
                        "depth": 1,
                        "parent_code": "gross_profit",
                        "sort_order": 30,
                        "value": "128174000.00",
                        "raw_value": "128174.000000",
                        "scale": "thousands"
                    },
                    {
                        "code": "gross_profit",
                        "name": "Gross Profit",
                        "statement_type": "IS",
                        "depth": 0,
                        "parent_code": null,
                        "sort_order": 40,
                        "value": "571593000.00",
                        "raw_value": "571593.000000",
                        "scale": "thousands"
                    }
                ]
            }
        ]
    ]
}
🟠404
Modified at 2026-04-16 14:04:43
Previous
Retrieve Company Details
Next
Predict Next Annual Report
Built with