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

# Get a fresh presigned recording URL

> Generate a fresh presigned URL for the agent call recording. Use when the URL delivered in the webhook or list/get endpoints has expired. Pass ?type=supervisor to fetch the warm-transfer supervisor leg recording instead of the main call recording.



## OpenAPI

````yaml get /api/v1/agent-calls/{id}/recording-url
openapi: 3.0.0
info:
  version: 1.0.0
  title: Feather AI API
servers:
  - url: https://prod.featherhq.com
    description: Production environment
security: []
paths:
  /api/v1/agent-calls/{id}/recording-url:
    get:
      tags:
        - Calls
      summary: Get a fresh presigned recording URL
      description: >-
        Generate a fresh presigned URL for the agent call recording. Use when
        the URL delivered in the webhook or list/get endpoints has expired. Pass
        ?type=supervisor to fetch the warm-transfer supervisor leg recording
        instead of the main call recording.
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
        - schema:
            type: string
            enum:
              - main
              - supervisor
            default: main
          required: false
          name: type
          in: query
      responses:
        '200':
          description: Fresh presigned URL generated
          content:
            application/json:
              schema:
                type: object
                properties:
                  url:
                    type: string
                  expiresAt:
                    type: string
                required:
                  - url
                  - expiresAt
        '400':
          description: Agent call not found or has no recording
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    default: 400
                  message:
                    type: string
                    default: Bad request
                  code:
                    type: string
                    enum:
                      - BAD_REQUEST
                    default: BAD_REQUEST
                  success:
                    type: boolean
                    enum:
                      - false
                    default: false
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    default: 500
                  message:
                    type: string
                    default: Internal server error
                  code:
                    type: string
                    enum:
                      - INTERNAL_SERVER_ERROR
                    default: INTERNAL_SERVER_ERROR
                  success:
                    type: boolean
                    enum:
                      - false
                    default: false
        '503':
          description: Unable to generate a fresh presigned URL; retry shortly
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    default: 500
                  message:
                    type: string
                    default: Internal server error
                  code:
                    type: string
                    enum:
                      - INTERNAL_SERVER_ERROR
                    default: INTERNAL_SERVER_ERROR
                  success:
                    type: boolean
                    enum:
                      - false
                    default: false
      security:
        - ApiKey: []
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: X-API-Key

````