> ## Documentation Index
> Fetch the complete documentation index at: https://docs.verbex.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Download Call Recording

> Download the recording file for a specific call.

This endpoint returns the call recording as a binary file (audio). Use this to directly
download the recording to your system for storage or processing.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/call-recording/download
openapi: 3.1.0
info:
  title: Verbex Platform API
  description: API for managing AI agents, calls, phone numbers, and more.
  version: 1.0.0
servers: []
security: []
paths:
  /v1/call-recording/download:
    post:
      tags:
        - Call Recording
      summary: Download Call Recording
      description: >-
        Download the recording file for a specific call.


        This endpoint returns the call recording as a binary file (audio). Use
        this to directly

        download the recording to your system for storage or processing.
      operationId: download_call_recording_v1_call_recording_download_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CallRecordingRequest'
        required: true
      responses:
        '200':
          description: Direct file download
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
                description: Direct file download
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/app__calls__schemas__ErrorResponse'
        '404':
          description: Recording Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/app__calls__schemas__ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CallRecordingRequest:
      properties:
        call_id:
          type: string
          title: Call Id
          description: The unique identifier of the call whose recording you want to access
        expiration_url_in_minutes:
          type: integer
          title: Expiration Url In Minutes
          description: >-
            Number of minutes until the signed URL expires. Controls how long
            the generated URL remains valid for accessing the recording.
          default: 10
      type: object
      required:
        - call_id
      title: CallRecordingRequest
    app__calls__schemas__ErrorResponse:
      properties:
        error:
          type: string
          title: Error
          description: Error code identifying the type of error that occurred
        message:
          type: string
          title: Message
          description: Human-readable description of the error
      type: object
      required:
        - error
        - message
      title: ErrorResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````