FinancialReports
  1. Filing Types
FinancialReports
  • FinancialReports API Documentation
  • Changelog
  • Companies
    • List Companies
      GET
    • Retrieve Company Details
      GET
  • Filings
    • List Filings
      GET
    • Retrieve Filing Markdown
      GET
    • Retrieve Filing Details
      GET
  • Filing Types
    • Understanding Filing Types
    • List Filing Types
      GET
    • Retrieve Filing Type
      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
      GET
    • Retrieve Country
      GET
  • Sources
    • Understanding Data Sources
    • List Data Sources
    • Retrieve Data Source
  • Watchlist
    • Get User's Watchlist
    • Add Company to Watchlist
    • Remove Company from Watchlist
  • schema
    • schema_retrieve
  1. Filing Types

Understanding Filing Types

The FinancialReports Standard#

Filing classifications and report names often vary significantly across different European jurisdictions, making it difficult to find and compare equivalent documents from different countries.
To solve this, we created the FinancialReports Filing Type Standard, an open classification system designed to harmonize all regulatory disclosures. By mapping thousands of original, country-specific filing names to this single, consistent standard, our API allows you to search for and analyze document types with confidence, regardless of their origin.

Accessing Filing Types via the API#

You can retrieve a complete, paginated list of all standardized filing types by making a GET request to the /filing-types/ endpoint. As the standard is refined, this endpoint will always provide the most up-to-date list of available types.
The response for each type includes a unique code, a human-readable name, and a detailed description.

Example: API Response Format#

{
    "count": 42,
    "next": "[https://api.financialreports.eu/api/filing-types/?page=2](https://api.financialreports.eu/api/filing-types/?page=2)",
    "previous": null,
    "results": [
        {
            "code": "10-K",
            "name": "Annual Report",
            "description": "A detailed yearly report covering a company's financial activities and performance."
        },
        {
            "code": "DIV",
            "name": "Dividend Notification",
            "description": "Announcements detailing proposed or declared dividend amounts, types (e.g. cash or scrip), and payment schedules."
        },
        {
            "code": "MA",
            "name": "M&A Activity",
            "description": "Formal announcements related to mergers, acquisitions, partnerships, or takeover activities."
        }
    ]
}

🔗 Official Resources#

For the most current and complete list of all filing types, please refer to the overview on our website.
FinancialReports: Filing Types Overview
Modified at 2025-08-16 08:52:15
Previous
Retrieve Filing Details
Next
List Filing Types
Built with