> ## 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 all recordings



## OpenAPI

````yaml get /api/recordings
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/recordings:
    get:
      tags:
        - Recordings
      summary: List all recordings
      responses:
        '200':
          description: List of available recordings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordingList'
components:
  schemas:
    RecordingList:
      type: object
      properties:
        recordings:
          type: array
          items:
            $ref: '#/components/schemas/RecordingSummary'
        count:
          type: integer
    RecordingSummary:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        metadata:
          $ref: '#/components/schemas/RecordingMetadata'
    RecordingMetadata:
      type: object
      properties:
        transaction_id:
          type: string
          format: uuid
        duration_ms:
          type: integer
        start_time:
          type: string
          format: date-time
        user_frames:
          type: integer
        agent_frames:
          type: integer

````