FinancialReports
  1. Filings
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. Filings

List Filings

GET
/filings/
Access Level Required: Requires Level 1 Plan or higher.

Retrieve a paginated list of regulatory filings.

Request

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/filings/' \
--header 'x-api-key;'

Responses

🟢200OK
application/json
Success
Body

Example
{
    "count": 123,
    "next": "http://api.example.org/accounts/?page=4",
    "previous": "http://api.example.org/accounts/?page=2",
    "results": [
        [
            {
                "id": 974971,
                "title": "Annual financial report 2023 (PDF)",
                "release_datetime": "2024-04-30T00:00:00+02:00",
                "company": {
                    "id": 14,
                    "name": "adidas AG",
                    "isins": [
                        "DE000A1EWWW0",
                        "US00687A1079",
                        "US00687P1049"
                    ],
                    "lei": "549300JSX0Z4CW0V5023",
                    "sub_industry_code": "1410",
                    "country_code": "DE"
                },
                "filing_type": {
                    "code": "10-K",
                    "name": "Annual Report",
                    "description": "Official yearly report covering company activity and full financial performance."
                }
            }
        ]
    ]
}
🟠401Unauthorized
Modified at 2025-08-16 09:53:31
Previous
Retrieve Company Details
Next
Retrieve Filing Markdown
Built with