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

# Store

> Get condensed statistics for the store



## OpenAPI

````yaml get /statistics/se/ica/stores/{ica_storeId}
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/{ica_storeId}:
    get:
      tags:
        - ICAStatistics
      summary: Store
      description: Get condensed statistics for the store
      operationId: ICAStatisticsStore
      parameters:
        - name: ica_storeId
          in: path
          description: The ICA store id
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreDetailCache
        '404':
          description: Not Found
components:
  schemas:
    Ormeo_Library_ICA_Cache_ICAStoreDetailCache:
      type: object
      properties:
        storeName:
          type: string
          nullable: true
        slug:
          type: string
          nullable: true
        ogDescription:
          type: string
          nullable: true
        ogTitle:
          type: string
          nullable: true
        ogImage:
          type: string
          nullable: true
        otherStoreNames:
          type: object
          additionalProperties:
            type: string
            nullable: true
          nullable: true
        address:
          type: string
          nullable: true
        storeFormat:
          type: string
          nullable: true
        latitude:
          type: number
          format: double
          nullable: true
        longitude:
          type: number
          format: double
          nullable: true
        rating:
          type: number
          format: double
          nullable: true
        notes:
          type: array
          items:
            $ref: '#/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreNoteCache'
          nullable: true
        periods:
          type: array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreDetailFinancialPeriodCache
          nullable: true
        revenue:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
        grossMargins:
          type: array
          items:
            type: number
            format: double
          nullable: true
        operatingMargin:
          type: array
          items:
            type: number
            format: double
          nullable: true
        profitMargin:
          type: array
          items:
            type: number
            format: double
          nullable: true
        numberOfEmployees:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
        dividends:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
        extraDividends:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
        netProfitOrLoss:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
        balancedResultAfterDividend:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
        costs:
          type: array
          items:
            $ref: >-
              #/components/schemas/Ormeo_Library_ICA_Cache_ICAStoreDetailFinancialCostCache
          nullable: true
      additionalProperties: false
    Ormeo_Library_ICA_Cache_ICAStoreNoteCache:
      type: object
      properties:
        period:
          type: integer
          format: int32
          nullable: true
        date:
          type: string
          format: date-time
          nullable: true
        notes:
          type: string
          nullable: true
      additionalProperties: false
    Ormeo_Library_ICA_Cache_ICAStoreDetailFinancialPeriodCache:
      type: object
      properties:
        period:
          type: integer
          format: int32
        shortDescription:
          type: string
          nullable: true
        periodLength:
          type: string
          nullable: true
        highlight:
          type: boolean
        highlightLabel:
          type: string
          nullable: true
      additionalProperties: false
    Ormeo_Library_ICA_Cache_ICAStoreDetailFinancialCostCache:
      type: object
      properties:
        label:
          type: string
          nullable: true
        amount:
          type: array
          items:
            type: integer
            format: int32
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````