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

# Get files in a recording



## OpenAPI

````yaml get /api/recordings/{recording_id}
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/{recording_id}:
    get:
      tags:
        - Recordings
      summary: Get files in a recording
      parameters:
        - name: recording_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Recording file list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordingFiles'
components:
  schemas:
    RecordingFiles:
      type: object
      properties:
        recording_id:
          type: string
        files:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              size:
                type: integer
              type:
                type: string

````