FinancialReports
  1. Filings
FinancialReports
  • FinancialReports API Documentation
  • Companies
    • List Companies
      GET
    • Retrieve Company Details
      GET
  • Filings
    • List Filings
      GET
    • Retrieve Filing Details
      GET
  • Processed Filings
    • Retrieve Processed Filing Content
      GET
  • Filing Types
    • List Filing Types
      GET
    • Retrieve Filing Type
      GET
  • GICS Classifications
    • List GICS Sectors
      GET
    • List GICS Industry Groups
      GET
    • List GICS Industries
      GET
    • List GICS Sub-Industries
      GET
    • Retrieve GICS Sector
      GET
    • Retrieve GICS Industry Group
      GET
    • Retrieve GICS Industry
      GET
    • Retrieve GICS Sub-Industry
      GET
  • Sources
    • List Data Sources
      GET
    • Retrieve Data Source
      GET
  • Watchlist
    • Get User's Watchlist
      GET
    • Add Company to Watchlist
      POST
    • Remove Company from Watchlist
      DELETE
  • schema
    • schema_retrieve
      GET
  1. Filings

Retrieve Filing Details

GET
/filings/{id}/
Filings
Retrieve detailed information for a single filing by its ID.

Request

Path Params
id
integer 
required
Header Params
x-api-key
string 
required

Request 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
Successfully retrieved the filing details.
Body
id
integer 
read-onlyrequired
Unique identifier for the filing.
company
object 
read-onlyrequired
Basic details of the company that made the filing.
id
integer 
read-onlyrequired
Unique identifier for the company.
name
string 
read-onlyrequired
Company name.
lei
string 
read-onlyrequired
Legal Entity Identifier (ISO 17442).
sub_industry_code
string  | null 
read-onlyrequired
GICS Sub-Industry code classifying the company.
country_code
string  | null 
read-onlyrequired
ISO 3166-1 alpha-2 country code of the company's primary registration or headquarters.
filing_type
object 
read-onlyrequired
Details of the filing type.
code
string 
read-onlyrequired
Unique code identifying the filing type.
name
string 
read-onlyrequired
Human-readable name of the filing type.
description
string 
read-onlyrequired
Detailed description of the filing type.
language
object 
read-onlyrequired
Language of the filing document.
code
string 
read-onlyrequired
ISO 639-1 language code (lowercase).
name
string 
read-onlyrequired
Name of the language.
filing_date
string <date>
read-onlyrequired
The official date the document was filed.
title
string 
read-onlyrequired
Title of the filing document.
added_to_platform
string <date-time>
read-onlyrequired
Timestamp when the filing was added to our system (UTC).
updated_date
string <date-time>
read-onlyrequired
Timestamp when the filing record was last updated (UTC).
dissemination_datetime
string <date-time> | null 
read-onlyrequired
Timestamp when the filing was disseminated by the source (UTC).
release_datetime
string <date-time> | null 
read-onlyrequired
Timestamp when the filing was released (e.g., for press releases) (UTC).
source
null  | allOf {1} 
read-onlyrequired
Source from which the filing was obtained.
object (Source) 
optional
document
string <uri> | null 
read-onlyrequired
Absolute URL link to the primary filing document (e.g., PDF, HTML).
extracted_kpis
null 
read-onlyrequired
Stores the structured financial KPIs extracted as JSON.
processed_filing_id
integer  | null 
read-onlyrequired
ID of the processed version of this filing, if available. Null otherwise.
Example
{
    "id": 0,
    "company": {
        "id": 0,
        "name": "string",
        "lei": "string",
        "sub_industry_code": "string",
        "country_code": "string"
    },
    "filing_type": {
        "code": "string",
        "name": "string",
        "description": "string"
    },
    "language": {
        "code": "string",
        "name": "string"
    },
    "filing_date": "2019-08-24",
    "title": "string",
    "added_to_platform": "2019-08-24T14:15:22Z",
    "updated_date": "2019-08-24T14:15:22Z",
    "dissemination_datetime": "2019-08-24T14:15:22Z",
    "release_datetime": "2019-08-24T14:15:22Z",
    "source": {
        "name": "string",
        "url": "http://example.com",
        "description": "string"
    },
    "document": "http://example.com",
    "extracted_kpis": null,
    "processed_filing_id": 0
}
🟠400Invalid input
🟠401Unauthorized: Invalid or missing API key
🟠403Forbidden: User does not have API access
Modified at 2025-05-24 05:59:30
Previous
List Filings
Next
Retrieve Processed Filing Content
Built with