Skip to main content
GET
/
datasets
/
companies
/
{companyId}
/
financial-report-summaries
Financial report summaries
curl --request GET \
  --url https://api.tic.io/datasets/companies/{companyId}/financial-report-summaries \
  --header 'x-api-key: <api-key>'
[
  {
    "financialReportSummaryId": 123,
    "title": "<string>",
    "arrivalDate": "2023-11-07T05:31:56Z",
    "registrationDate": "2023-11-07T05:31:56Z",
    "periodStart": "2023-11-07T05:31:56Z",
    "periodEnd": "2023-11-07T05:31:56Z",
    "isInterimReport": true,
    "isConsolidatedAccounts": true,
    "isExchange": true,
    "isSustainabilityReport": true,
    "isElectronic": true,
    "ruleset": "<string>",
    "setupFormCode": "<string>",
    "financialSetupForm": {
      "ruleset": "<string>",
      "code": "<string>",
      "description": "<string>"
    },
    "firstSeenAtUtc": "2023-11-07T05:31:56Z",
    "lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
    "caseNumber": 123,
    "caseYear": 123,
    "software": "<string>",
    "auditor": "<string>",
    "companyFinancialReportFile": [
      {
        "companyFinancialReportFileId": 123,
        "reportFileType": "xbrl",
        "firstSeenAtUtc": "2023-11-07T05:31:56Z",
        "lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
      }
    ],
    "companyFinancialReportSignature": [
      {
        "companyFinancialReportSignatureId": 123,
        "givenName": "<string>",
        "lastName": "<string>",
        "role": "<string>",
        "description": "<string>",
        "signatureDate": "2023-11-07T05:31:56Z",
        "lastUpdatedAtUtc": "2023-11-07T05:31:56Z"
      }
    ],
    "companyDividend": [
      {
        "companyDividendId": 123,
        "companyId": 123,
        "arrivalDate": "2023-11-07T05:31:56Z",
        "accountingPeriodStart": "2023-11-07T05:31:56Z",
        "accountingPeriodEnd": "2023-11-07T05:31:56Z",
        "isInterimReport": true,
        "isConsolidatedAccounts": true,
        "generalMeetingDate": "2023-11-07T05:31:56Z",
        "dividendDate": "2023-11-07T05:31:56Z",
        "dividendType": "dividendOrdinary",
        "dividendTypeDescription": "<string>",
        "dividendDescription": "<string>",
        "dividendAmount": 123,
        "dividendCurrencyCode": "<string>",
        "firstSeenAtUtc": "2023-11-07T05:31:56Z",
        "lastUpdatedAtUtc": "2023-11-07T05:31:56Z",
        "caseNumber": 123,
        "caseYear": 123
      }
    ],
    "hasFinancialReport": true,
    "hasBeenAudited": true,
    "hasAuditorRemarks": true
  }
]
This endpoint delivers available financial reports and their metadata and files available, more called annual reports but also interim reports can be present. The data includes all available files for the financial report. After getting the response you can simply download the files from here.

Authorizations

x-api-key
string
header
required

Path Parameters

companyId
integer
required

The company id

Response

OK

financialReportSummaryId
integer
title
string | null
arrivalDate
string<date-time> | null
registrationDate
string<date-time> | null
periodStart
string<date-time> | null
periodEnd
string<date-time> | null
isInterimReport
boolean | null
isConsolidatedAccounts
boolean | null
isExchange
boolean | null
isSustainabilityReport
boolean | null
isElectronic
boolean | null
ruleset
string | null
setupFormCode
string | null
financialSetupForm
object
firstSeenAtUtc
string<date-time> | null
lastUpdatedAtUtc
string<date-time>
caseNumber
integer | null
caseYear
integer | null
software
string | null
auditor
string | null
companyFinancialReportFile
object[] | null
companyFinancialReportSignature
object[] | null
companyDividend
object[] | null
hasFinancialReport
boolean
hasBeenAudited
boolean | null
hasAuditorRemarks
boolean | null
I