> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getdialed.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List data stores

> Lists the data stores available to your account with offset pagination (`limit`/`skip`) and a real `total`. A store's `slug` identifies it in every other store URL. `next_cursor` is always null on this offset endpoint.



## OpenAPI

````yaml /openapi.json get /data/stores
openapi: 3.1.0
info:
  title: GetDialed API
  version: 0.1.0
servers:
  - url: https://api.getdialed.ai/v1
    description: Production
security: []
paths:
  /data/stores:
    get:
      tags:
        - data-stores
      summary: List data stores
      description: >-
        Lists the data stores available to your account with offset pagination
        (`limit`/`skip`) and a real `total`. A store's `slug` identifies it in
        every other store URL. `next_cursor` is always null on this offset
        endpoint.
      operationId: list_stores_data_stores_get
      parameters:
        - name: skip
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Skip
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 50
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Page_StoreSummaryResponse_'
        '401':
          description: Missing or invalid authentication
          content:
            application/json:
              example:
                detail: Authentication required
        '422':
          description: Validation error (see body for field details)
          content:
            application/json:
              example:
                detail: Validation error
        '429':
          description: Rate limit exceeded — retry after the Retry-After header
          content:
            application/json:
              example:
                detail: Rate limit exceeded
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    Page_StoreSummaryResponse_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/StoreSummaryResponse'
          type: array
          title: Items
        total:
          anyOf:
            - type: integer
            - type: 'null'
          title: Total
        limit:
          type: integer
          title: Limit
        skip:
          type: integer
          title: Skip
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
      type: object
      required:
        - items
        - limit
        - skip
      title: Page[StoreSummaryResponse]
    StoreSummaryResponse:
      properties:
        slug:
          type: string
          title: Slug
          description: >-
            Identifies the store in every store URL, e.g.
            `company-phone-numbers`.
        tier:
          type: string
          title: Tier
          description: >-
            Which kind of store this is. `account_core` stores hold your
            account's authoritative records.
        field_count:
          type: integer
          title: Field Count
          description: How many fields the store's records can hold.
        sources:
          items:
            type: string
          type: array
          title: Sources
          description: >-
            Every source that may write a layer to this store. Precedence
            settings may reorder or restrict this set, never extend it.
      type: object
      required:
        - slug
        - tier
        - field_count
        - sources
      title: StoreSummaryResponse
      description: One store in the list of stores available to your account.
      example:
        field_count: 18
        slug: company-phone-numbers
        sources:
          - manual
          - crm
          - five9_report
          - csv_file
        tier: account_core
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````