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
.{
"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.Modified at 2025-08-16 08:52:15