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

# Get Recording Download Url

> Get a fresh download URL for a recording.

Generates a new presigned URL with custom expiration time.
Useful for refreshing expired URLs without fetching full recording details.

**Restriction**: Recording must be enabled for the agent in agent configuration.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /agents/{agent_id}/recordings/{recording_id}/download-url
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /agents/{agent_id}/recordings/{recording_id}/download-url:
    get:
      tags:
        - recordings
      summary: Get Recording Download Url
      description: >-
        Get a fresh download URL for a recording.


        Generates a new presigned URL with custom expiration time.

        Useful for refreshing expired URLs without fetching full recording
        details.


        **Restriction**: Recording must be enabled for the agent in agent
        configuration.
      operationId: >-
        get_recording_download_url_agents__agent_id__recordings__recording_id__download_url_get
      parameters:
        - name: agent_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Agent Id
        - name: recording_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Recording Id
        - name: expires
          in: query
          required: false
          schema:
            type: integer
            maximum: 86400
            minimum: 60
            description: URL expiration in seconds
            default: 3600
            title: Expires
          description: URL expiration in seconds
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    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
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````