> ## 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.

# Report iXBRL

> Download or view the financial document by it's id in the iXBRL format

### Details

This will return the report in a XHTML (iXBRL) format inline with the browser.
To force a download you can use querystring inline=false.

Please note that if no iXBRL document is available you will get 404 - Not found.

iXBRL is a format that combines tradional HTML with XML elements from the XBRL standard.
It works fine for user experiences where you don't want a PDF viewer to open.

You can also use this document if you want to provide your own processing of the
financial data.


## OpenAPI

````yaml get /financial-documents/se/{financialDocumentReference}/ixbrl
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:
  /financial-documents/se/{financialDocumentReference}/ixbrl:
    get:
      tags:
        - FinancialDocuments
      summary: Download or view the financial document by iXBRL
      description: Download or view the financial document by it's id in the iXBRL format
      operationId: FinancialDocumentReportDownloadiXBRL
      parameters:
        - name: financialDocumentReference
          in: path
          description: The document reference
          required: true
          schema:
            type: string
        - name: inline
          in: query
          description: Set to true to get an inline file rendered in the browser
          schema:
            type: boolean
            default: true
      responses:
        '200':
          description: OK
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````