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

# List Collections

> List all collections.



## OpenAPI

````yaml /api-reference/openapi.json get /api/dashboard/collections
openapi: 3.1.0
info:
  title: Agentic Commerce API
  description: |2-

        Agentic Commerce API - E-commerce Backend

        ## APIs

        ### Dashboard API (`/api/dashboard`)
        Authenticated endpoints for merchant management:
        - Products, Variants, Options
        - Inventory management
        - Orders and fulfillment
        - Customers
        - Collections

        ### Storefront API (`/api/storefront`)
        Public endpoints for client websites:
        - Product catalog
        - Collections
        - Cart management
        - Checkout

        ### Sync API (`/api/sync`)
        Integration endpoints for zunkiree-search:
        - Product sync
        - Availability checks
        - Order creation from AI widget
        
  version: 1.0.0
servers: []
security: []
paths:
  /api/dashboard/collections:
    get:
      tags:
        - Dashboard
        - Collections
      summary: List Collections
      description: List all collections.
      operationId: list_collections_api_dashboard_collections_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Limit
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - name: X-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
        - name: X-Stella-Merchant-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Stella-Merchant-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CollectionListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CollectionListResponse:
      properties:
        collections:
          items:
            $ref: '#/components/schemas/CollectionResponse'
          type: array
          title: Collections
        total:
          type: integer
          title: Total
        page:
          type: integer
          title: Page
        limit:
          type: integer
          title: Limit
        pages:
          type: integer
          title: Pages
      type: object
      required:
        - collections
        - total
        - page
        - limit
        - pages
      title: CollectionListResponse
      description: Schema for paginated collection list.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CollectionResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        merchant_id:
          type: string
          format: uuid
          title: Merchant Id
        title:
          type: string
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        handle:
          anyOf:
            - type: string
            - type: 'null'
          title: Handle
        type:
          type: string
          title: Type
        image_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Image Url
        sort_order:
          type: string
          title: Sort Order
        published:
          type: boolean
          title: Published
        published_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Published At
        products_count:
          type: integer
          title: Products Count
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - merchant_id
        - title
        - description
        - handle
        - type
        - image_url
        - sort_order
        - published
        - published_at
        - products_count
        - created_at
        - updated_at
      title: CollectionResponse
      description: Schema for collection in responses.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````