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

> Retrieve a list of transactions for a connected account.



## OpenAPI

````yaml get /stripe/connect/accounts/{accountId}/transactions
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}/transactions:
    get:
      tags:
        - Stripe Connect
      summary: List Transactions
      description: Retrieve a list of transactions 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: limit
          in: query
          required: false
          description: Max number of transactions to return (1-100). Defaults to 50.
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
        - name: starting_after
          in: query
          required: false
          description: Pagination cursor (returns results after this ID).
          schema:
            type: string
        - name: customer
          in: query
          required: false
          description: Filter by Stripe customer 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:
                        id:
                          type: string
                          description: The payment intent ID
                          example: pi_3ABC123DEF456GHI
                        amount:
                          type: integer
                          description: >-
                            Amount in smallest currency unit (e.g., cents for
                            USD)
                          example: 10000
                        currency:
                          type: string
                          description: Three-letter ISO currency code
                          example: usd
                        status:
                          type: string
                          description: Payment status
                          example: succeeded
                        description:
                          type: string
                          nullable: true
                          description: Description of the payment
                          example: Subscription creation
                        customer:
                          type: object
                          properties:
                            id:
                              type: string
                              example: cus_ABC123XYZ
                            email:
                              type: string
                              example: customer@example.com
                            name:
                              type: string
                              example: John Doe
                        created:
                          type: integer
                          description: Unix timestamp of when the transaction was created
                          example: 1700000000
                  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

````