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

# Get Call Recording

> Returns a short-lived presigned URL to download the call's audio recording. The URL expires after 15 minutes — fetch it on demand rather than storing it.



## OpenAPI

````yaml GET /v1/call/{id}/recording
openapi: 3.1.0
info:
  title: OSVI AI API
  description: REST API for the OSVI AI voice and chat platform
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.osvi.ai
security:
  - ApiToken: []
paths:
  /v1/call/{id}/recording:
    get:
      summary: Get a call recording URL
      description: >-
        Returns a short-lived presigned URL to download the call's audio
        recording. The URL expires after 15 minutes — fetch it on demand rather
        than storing it.
      parameters:
        - name: id
          in: path
          required: true
          description: The call's `call_id` (UUID).
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: A presigned recording URL.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: object
                    properties:
                      call_id:
                        type: string
                        format: uuid
                      recording_url:
                        type: string
                        format: uri
                        example: https://s3.amazonaws.com/.../recording.mp4?X-Amz-...
                      expires_in_seconds:
                        type: integer
                        example: 900
        '401':
          description: Invalid or missing API token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorUnauthorized'
        '404':
          description: >-
            The call does not exist on your account, or has no recording
            available.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorNotFound'
              example:
                success: false
                error: recording_not_available
                details: null
components:
  schemas:
    ErrorUnauthorized:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          example: Invalid API token
    ErrorNotFound:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
          example: agent_not_found
        details:
          type: object
          nullable: true
          example: null
  securitySchemes:
    ApiToken:
      type: apiKey
      in: header
      name: API-Token
      description: >-
        16-character API token associated with your OSVI account. Find it in
        your dashboard under Settings → API.

````