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

# List Products

> Retrieve a list of products for a connected account.



## OpenAPI

````yaml get /stripe/connect/accounts/{accountId}/products
openapi: 3.0.1
info:
  title: ChatDash API Documentation
  description: API Documentation for the ChatDash Server
  version: 2.0.0
servers:
  - url: https://api.chat-dash.com/v1/public
security: []
paths:
  /stripe/connect/accounts/{accountId}/products:
    get:
      tags:
        - Stripe Connect
      summary: List Products
      description: Retrieve a list of products for a connected account.
      parameters:
        - name: Authorization
          in: header
          required: true
          description: >-
            All requests to the ChatDash API must be validated with the agency
            API Key found on your agency profile
          schema:
            type: string
        - name: accountId
          in: path
          required: true
          description: The Stripe connected account ID
          schema:
            type: string
        - name: status
          in: query
          required: false
          description: >-
            Filter products by status: active, archived, or all. Defaults to
            active.
          schema:
            type: string
            enum:
              - active
              - archived
              - all
            default: active
        - name: limit
          in: query
          required: false
          description: Max number of products to return (1-100). Defaults to 100.
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 100
        - name: starting_after
          in: query
          required: false
          description: Pagination cursor (returns results after this ID).
          schema:
            type: string
        - name: created_start
          in: query
          required: false
          description: Filter by created date start (unix timestamp, seconds).
          schema:
            type: integer
        - name: created_end
          in: query
          required: false
          description: Filter by created date end (unix timestamp, seconds).
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        productId:
                          type: string
                          example: prod_ABC123XYZ
                        productName:
                          type: string
                          example: Starter Plan
                        description:
                          type: string
                          nullable: true
                          example: Up to 100 minutes included
                        taxBehavior:
                          type: string
                          example: exclusive
                        pricing:
                          type: object
                          properties:
                            amount:
                              type: string
                              example: '2999'
                            billingCycle:
                              type: string
                              example: month
                            currency:
                              type: string
                              example: usd
                            pricingModel:
                              type: string
                              example: base
                            metrics:
                              type: string
                              nullable: true
                              example: minutes
                            usageLimit:
                              type: integer
                              nullable: true
                              example: 100
                            overage:
                              type: string
                              nullable: true
                              description: >-
                                Overage price per unit in the smallest currency
                                unit (e.g., cents for USD)
                              example: '15'
                        creationDate:
                          type: integer
                          example: 1700000000
                        activeSubscriptionsCount:
                          type: integer
                          example: 5
                        status:
                          type: string
                          example: active
                  has_more:
                    type: boolean
                    example: false
                  next_cursor:
                    type: string
                    nullable: true
                    example: null
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: An unexpected error occurred

````