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

# Bolagsverket Financial Reports Daily

> Get statistics of registered financial reports per day at Bolagsverket

### Details

This endpoint delivers daily statistics about registered financial reports (annual and interim reports)
at Bolagsverket (The Swedish companies registration office). Updates occur after 00:00 each day in the
week.

### Response Model (Jagged Arrays)

The response model is compact to deliver ultra low response times. Data is only stored in RAM memory. Therefore
the data is supplied in what's called jagged array's. A jagged array is sometimes called an "array of arrays."

#### eReports

This contains the registered electronic financial reports. The format is an array of arrays with the type \[Int32,Int32]
with the first representing YYMMDD (e.g year, month and day note that year is only given in two digits eg. 2024 = 24, 2025 = 25). The second
represent the number of reports registered for the date.

#### pReports

This contains the number of registered paper (scanned) financial reports. Each element in the array is of type \[Int32,Int32]
with the first representing YYMMDD (e.g year, month and day note that year is only given in two digits eg. 2024 = 24, 2025 = 25). The second
represent the number of reports registered for the date.

#### softwareEnum

This is a dictionary of all given listed software used in the statistics of electronic registered financial reports. The
key in the dictionary is used in the softwareUsed property.

#### softwareUsed

This contains software used for electronic financial reports per day. The format is an array of arrays with the type
\[Int32, Int32, Int32]. with the first representing YYMMDD (e.g year, month and day note that year is only given in two digits eg. 2024 = 24, 2025 = 25).
The second the key fo the dictionary for the softwareEnum. The third part represents the number of reports of reports
registered for the date.

### intelligence

This contains the number of discrepancies we are finding in the registered financial reports for the same day.
The format is an array of arrays with the type \[Float,Float,Float] with the first representing YYMMDD
(e.g year, month and day note that year is only given in two digits eg. 2024 = 24, 2025 = 25). The second represent the number of discrepancies
found for the same date as the registered financial report. The second represent the number of discrepancies
found for the same date as the registered financial report. The third represents the percentage of found
discrepancies compared to the same days registered financial reports.

## softwareYTD

This is a dictionary with the key holding the software vendor and the value represents registered financial reports for year to date. The year
represents the year the request is being made.


## OpenAPI

````yaml get /statistics/se/bolagsverket/financial-reports/daily
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:
  /statistics/se/bolagsverket/financial-reports/daily:
    get:
      tags:
        - BolagsverketStatistics
      summary: Bolagsverket financial reports daily statistics
      description: Get statistics of registered financial reports per day at Bolagsverket
      operationId: BolagsverketStatisticsReportsDaily
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Library_Generators_Statistics_BolagsverketFinancialReportsStatistics
        '404':
          description: Not Found
components:
  schemas:
    Ormeo_Library_Generators_Statistics_BolagsverketFinancialReportsStatistics:
      type: object
      properties:
        eReports:
          type: array
          items:
            type: array
            items:
              type: integer
              format: int32
          nullable: true
        pReports:
          type: array
          items:
            type: array
            items:
              type: integer
              format: int32
          nullable: true
        softwareEnum:
          type: object
          additionalProperties:
            type: string
            nullable: true
          nullable: true
        softwareUsed:
          type: array
          items:
            type: array
            items:
              type: integer
              format: int32
          nullable: true
        intelligence:
          type: array
          items:
            type: array
            items:
              type: number
              format: float
          nullable: true
        softwareYTD:
          type: object
          additionalProperties:
            type: integer
            format: int32
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````