> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tic.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Financial report file

> Gets the file for the financial report summary

This endpoint delivers the actual file requested for the financial report.

## ReportFileFormat

The available files depends on the source format but here is list of all available types, ReportFileType, present in the response.

The default file to use for presentation in web applications are OriginalPDFImage or OriginalPDFSearchable.

| Enum                  | Swedish                                                | English                                                     |
| --------------------- | ------------------------------------------------------ | ----------------------------------------------------------- |
| XBRL                  | XBRL format                                            | XBRL format                                                 |
| XBRL\_RB              | XBRL format av revisionsberättelsen                    | XBRL format of the audit report                             |
| iXBRL                 | iXBRL format (xhtml)                                   | iXBRL format (xhtml)                                        |
| iXBRL\_RB             | iXBRL format (xhtml) av revisionsberättelsen           | iXBRL format (xhtml) of the audit report                    |
| TIFF                  | Orginal multi-page tiff                                | Orginal multi-page tiff                                     |
| EnhancedPDFSearchable | IDP bearbetad PDF med skarpare text och fritext sökbar | IDP processed PDF with sharper text and freetext searchable |
| OriginalPDFImage      | Orginal PDF                                            | Orginal PDF                                                 |
| OriginalPDFSearchable | Orginal PDF fritext sökbar                             | Orginal PDF freetext searchable                             |
| EntityJson            | JSON format av rapporten                               | JSON format of the report                                   |
| OCRJson               | hOCR format av rapporten                               | hOCR format of the report                                   |
| TIFF\_RB              | Orginal multi-page tiff av revisionsberättelsen        | Orginal multi-page of the audit report                      |


## OpenAPI

````yaml get /datasets/companies/{companyId}/financial-report-summaries/{financialReportSummaryId}/files/{financialReportFileId}
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /datasets/companies/{companyId}/financial-report-summaries/{financialReportSummaryId}/files/{financialReportFileId}:
    get:
      tags:
        - Companies
      summary: Financial report file
      description: Gets the file for the financial report summary
      operationId: CompanyFinancialReportFile
      parameters:
        - name: companyId
          in: path
          description: The company id
          required: true
          schema:
            type: integer
            format: int32
        - name: financialReportSummaryId
          in: path
          description: The financial report summary id
          required: true
          schema:
            type: integer
            format: int32
        - name: financialReportFileId
          in: path
          description: The financial report file id
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: OK
        '404':
          description: Not Found
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````