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
    • The Financial Reporting Classification Framework (FRCF)
    • 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

The Financial Reporting Classification Framework (FRCF)

The Financial Reporting Classification Framework (FRCF)#

Filing classifications and report names often vary significantly across European jurisdictions, making it difficult to find and compare equivalent documents from different countries.
To solve this, we created the Financial Reporting Classification Framework (FRCF), an open, hierarchical system designed to harmonize all regulatory disclosures. The framework is built on a three-tiered structure:
11 Disclosure Types: Broad functional categories like "Financial Reporting & Information" or "ESG Information".
39 Report Types: Specific categories of reports, such as "Annual Report" or "Earnings Release". This is the level exposed in the API.
109 Publication Types: The most granular document types, like "Annual Financial Reports/Statements" or "Semi-Annual Reports".
ands 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 109 standardized Publication Types by making a GET request to the /filing-types/ endpoint. As the framework 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 (e.g., "10-K"), a human-readable name, and a detailed description.

Example: API Response Format#

{
    "count": 109,
    "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": "Notice of Dividend Amount",
            "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 & Methodology#

For a complete understanding of our classification system, please refer to the following official resources.
Live Filing Types List: A searchable, up-to-date list of all Publication Types with definitions.
FRCF Framework Overview: A high-level introduction to the framework, its principles, and a visual "Periodic Table" of all disclosures.
Full Methodology (PDF): The complete methodology document detailing the framework's principles, governance, and definitions for every disclosure category.
Modified at 2025-09-15 09:46:13
Previous
Retrieve Filing Details
Next
List Filing Types
Built with