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

# List

> Get a list of all ICA stores



## OpenAPI

````yaml get /datasets/se/ica/stores
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:
  /datasets/se/ica/stores:
    get:
      tags:
        - ICA
      summary: List
      description: Get a list of all ICA stores
      operationId: ICAList
      parameters:
        - name: lastItemId
          in: query
          description: Take records after the id
          schema:
            type: integer
            format: int32
            default: 0
        - name: pageSize
          in: query
          description: Page size
          schema:
            type: integer
            format: int32
            default: 10
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_Store_DtoItemsPagination
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_Store_DtoItemsPagination:
      type: object
      properties:
        pageSize:
          type: integer
          format: int32
        lastItemId:
          type: integer
          format: int64
        totalItems:
          type: integer
          format: int32
        items:
          type: array
          items:
            $ref: >-
              #/components/schemas/Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_Store_Dto
          nullable: true
      additionalProperties: false
    Ormeo_WebAPI_Models_Datasets_Sweden_ICA_ICA_Store_Dto:
      type: object
      properties:
        ica_StoreId:
          type: integer
          format: int32
        companyId:
          type: integer
          format: int32
          nullable: true
        icaExternalStoreId:
          type: string
          nullable: true
        icaStoreOwnerId:
          type: integer
          format: int64
          nullable: true
        storeName:
          type: string
          nullable: true
        city:
          type: string
          nullable: true
        street:
          type: string
          nullable: true
        zipCode:
          type: integer
          format: int64
          nullable: true
        area:
          type: string
          nullable: true
        storeFormat:
          type: string
          nullable: true
        marketingText:
          type: string
          nullable: true
        latitude:
          type: number
          format: double
          nullable: true
        longitude:
          type: number
          format: double
          nullable: true
        deliveryMethods:
          type: string
          nullable: true
        customerTypes:
          type: string
          nullable: true
        hasKlarna:
          type: string
          nullable: true
        onlineVersion:
          type: integer
          format: int32
          nullable: true
        hasPriceAdjustment:
          type: boolean
          nullable: true
        accountId:
          type: integer
          format: int64
          nullable: true
        retailerSiteId:
          type: string
          nullable: true
        storeProfileId:
          type: string
          nullable: true
        slug:
          type: string
          nullable: true
        isEhl:
          type: integer
          format: int64
          nullable: true
        retailerSiteIds:
          type: string
          nullable: true
        cfcSiteId:
          type: string
          nullable: true
        storePickingSiteId:
          type: string
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
          nullable: true
        phone:
          type: string
          nullable: true
        email:
          type: string
          nullable: true
        organizationNumber:
          type: string
          nullable: true
        bhsUrl:
          type: string
          nullable: true
        onlineUrl:
          type: string
          nullable: true
        onlinePlatform:
          type: string
          nullable: true
        onlineRegionId:
          type: string
          format: uuid
          nullable: true
        legalName:
          type: string
          nullable: true
        statusHigh:
          type: string
          nullable: true
        capital:
          type: string
          nullable: true
        companyFormed:
          type: string
          format: date-time
          nullable: true
        companyRegistered:
          type: string
          format: date-time
          nullable: true
        currentCompanyRegistered:
          type: string
          format: date-time
          nullable: true
        stockCompany:
          type: boolean
          nullable: true
        vatRegistered:
          type: boolean
          nullable: true
        payrollRegistered:
          type: boolean
          nullable: true
        fTaxRegistered:
          type: boolean
          nullable: true
        companyDescription:
          type: string
          nullable: true
        sniCodesSeparatedByDelimeter:
          type: string
          nullable: true
        subsidaryToICA:
          type: boolean
          nullable: true
        subsidaryToICAOwnershipInPercentage:
          type: integer
          format: int32
          nullable: true
        customSlug:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````