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

> Get metadata for the financial document with id

### Details

This will return the any known metadata for the financial report.


## OpenAPI

````yaml get /financial-documents/se/{financialDocumentReference}/metadata
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}/metadata:
    get:
      tags:
        - FinancialDocuments
      summary: Get metadata for financial document
      description: Get metadata for the financial document with id
      operationId: FinancialDocumentsMetadataById
      parameters:
        - name: financialDocumentReference
          in: path
          description: The financial document id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_WebAPI_Models_Documents_CompanyFinancialDocumentMetadata_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Documents_CompanyFinancialDocumentMetadata_Dto:
      type: object
      properties:
        financialDocumentReference:
          type: string
          nullable: true
        companyName:
          type: string
          nullable: true
        registrationNumber:
          type: integer
          format: int64
          nullable: true
        arrivalDate:
          type: string
          format: date-time
          nullable: true
        ruleset:
          type: string
          nullable: true
        code:
          type: string
          nullable: true
        formatDescription:
          type: string
          nullable: true
          readOnly: true
        periodStart:
          type: string
          format: date-time
          nullable: true
        periodEnd:
          type: string
          format: date-time
          nullable: true
        annualGeneralMeetingDate:
          type: string
          format: date-time
          nullable: true
        lastSignatureDate:
          type: string
          format: date-time
          nullable: true
        auditorFullName:
          type: string
          nullable: true
        auditCompanyName:
          type: string
          nullable: true
        hasReportXBRL:
          type: boolean
          readOnly: true
        hasReportiXBRL:
          type: boolean
          readOnly: true
        hasReportPDF:
          type: boolean
          readOnly: true
        hasAuditLetterXBRL:
          type: boolean
          readOnly: true
        hasAuditLetteriXBRL:
          type: boolean
          readOnly: true
        hasAuditLetterPDF:
          type: boolean
          readOnly: true
        reportSoftwareMetaTag:
          type: string
          nullable: true
        reportSoftwareVersionMetaTag:
          type: string
          nullable: true
        reportApplicationName:
          type: string
          nullable: true
        reportAuditReportHashMetaTag:
          type: string
          nullable: true
        reportOriginatorMetaTag:
          type: string
          nullable: true
        reportAuditorMetaTag:
          type: string
          nullable: true
        auditorSoftwareMetaTag:
          type: string
          nullable: true
        auditorSoftwareVersionMetaTag:
          type: string
          nullable: true
        auditorApplicationName:
          type: string
          nullable: true
        auditorReportHashMetaTag:
          type: string
          nullable: true
        auditorOriginatorMetaTag:
          type: string
          nullable: true
        caseRegistrationDate:
          type: string
          format: date-time
          nullable: true
        caseNumber:
          type: integer
          format: int32
          nullable: true
        caseYear:
          type: integer
          format: int32
          nullable: true
        notificationDate:
          type: string
          format: date-time
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````