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

# List CDR reports



## OpenAPI

````yaml get /api/cdr/reports
openapi: 3.1.0
info:
  title: Voice Runtime Proxy & Recording API
  description: >-
    API for voice runtime WebSocket proxying, call recordings, CDR ingestion,
    and static UI serving.
  version: 1.0.0
servers:
  - url: http://localhost:9511/
security: []
tags:
  - name: Voice Runtime
  - name: Recordings
  - name: CDR
  - name: Static
paths:
  /api/cdr/reports:
    get:
      tags:
        - CDR
      summary: List CDR reports
      responses:
        '200':
          description: CDR report summaries
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CdrReportSummary'
components:
  schemas:
    CdrReportSummary:
      type: object
      properties:
        id:
          type: string
        received_at:
          type: string
          format: date-time
        transaction_id:
          type: string
        agent_id:
          type: string
        environment_id:
          type: string
        end_reason:
          type: string
        milliseconds_elapsed:
          type: integer
        turn_count:
          type: integer
        failure_occurred:
          type: boolean
        system_error:
          type: boolean
        message:
          type: string

````