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

# Get Product

> Retrieve a single product for a connected account.



## OpenAPI

````yaml get /stripe/connect/accounts/{accountId}/products/{productId}
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/{productId}:
    get:
      tags:
        - Stripe Connect
      summary: Get Product
      description: Retrieve a single product 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: productId
          in: path
          required: true
          description: The Stripe product ID
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                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
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: An unexpected error occurred

````