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

# Extra dividends

> Get condensed statistics for the stores with specific dividends



## OpenAPI

````yaml get /statistics/se/ica/stores/largest-extra-dividends
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/ica/stores/largest-extra-dividends:
    get:
      tags:
        - ICAStatistics
      summary: Extra dividends
      description: Get condensed statistics for the stores with specific dividends
      operationId: ICAStatisticsExtraDividends
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreFinancialsCache
        '404':
          description: Not Found
components:
  schemas:
    Ormeo_Library_ICA_Cache_ICAStoreFinancialsCache:
      type: object
      properties:
        icA_StoreId:
          type: integer
          format: int32
        storeFormat:
          type: string
          nullable: true
        storeName:
          type: string
          nullable: true
        slug:
          type: string
          nullable: true
        storeNamesIfMany:
          type: string
          nullable: true
        organizationNumber:
          type: string
          nullable: true
        annualReports:
          type: array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreAnnualReportCache
          nullable: true
        revenueJsonArray:
          type: string
          nullable: true
          readOnly: true
        revenueOperatingProfitArray:
          type: string
          nullable: true
          readOnly: true
        extraDividendJsonArray:
          type: string
          nullable: true
          readOnly: true
        allDividendsJsonArray:
          type: string
          nullable: true
          readOnly: true
      additionalProperties: false
    Ormeo_Library_ICA_Cache_ICAStoreAnnualReportCache:
      type: object
      properties:
        annualReportPeriod:
          type: integer
          format: int32
        annualReportPeriodDescription:
          type: string
          nullable: true
        revenue:
          type: integer
          format: int32
          nullable: true
        grossProfit:
          type: number
          format: double
          nullable: true
        operatingProfit:
          type: number
          format: double
          nullable: true
        returnOnEquity:
          type: number
          format: double
          nullable: true
        dividend:
          type: integer
          format: int32
          nullable: true
        extraDividend:
          type: integer
          format: int32
          nullable: true
        revenueDescription:
          type: string
          nullable: true
          readOnly: true
        profit:
          type: integer
          format: int32
          nullable: true
        profitMargin:
          type: number
          format: double
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````