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

# Download interleaved stereo audio



## OpenAPI

````yaml get /api/recordings/{recording_id}/audio/interleaved
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}/audio/interleaved:
    get:
      tags:
        - Recordings
      summary: Download interleaved stereo audio
      parameters:
        - name: recording_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Raw interleaved stereo PCM audio (16kHz, 16-bit)
          headers:
            X-Sample-Rate:
              schema:
                type: integer
              example: 16000
            X-Channels:
              schema:
                type: integer
              example: 2
            X-Bit-Depth:
              schema:
                type: integer
              example: 16
            X-Channel-Layout:
              schema:
                type: string
              example: stereo
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary

````