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

# Get Signed URL for Call Recording

> Get a pre-signed URL to access the recording of a specific call.

This endpoint generates a temporary signed URL that can be used to stream or download
the call recording. The signed URL expires after a limited time for security purposes.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/call-recording/signed-url
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/signed-url:
    post:
      tags:
        - Call Recording
      summary: Get Signed URL for Call Recording
      description: >-
        Get a pre-signed URL to access the recording of a specific call.


        This endpoint generates a temporary signed URL that can be used to
        stream or download

        the call recording. The signed URL expires after a limited time for
        security purposes.
      operationId: get_signed_url_v1_call_recording_signed_url_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CallRecordingRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallRecordingSignedUrlResponse'
        '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
    CallRecordingSignedUrlResponse:
      properties:
        file_name:
          type: string
          title: File Name
          description: The name of the recording file
        signed_url:
          type: string
          title: Signed Url
          description: >-
            A temporary pre-signed URL to access the call recording. This URL
            expires after a limited time.
        expiration_minutes:
          type: integer
          title: Expiration Minutes
          description: Number of minutes until the signed URL expires
        expires_at:
          type: string
          format: date-time
          title: Expires At
          description: The exact timestamp when the signed URL will expire
      type: object
      required:
        - file_name
        - signed_url
        - expiration_minutes
        - expires_at
      title: CallRecordingSignedUrlResponse
      example:
        file_name: >-
          webcall_abc123def456_agent_12345678-abcd-efgh-ijkl-123456789012-2026-03-26T174837.ogg
        signed_url: >-
          https://storage.googleapis.com/your-bucket/webcall_abc123def456_agent_12345678-abcd-efgh-ijkl-123456789012-2026-03-26T174837.ogg?X-Goog-Algorithm=GOOG4-RSA-SHA256&X-Goog-Credential=...&X-Goog-Date=20260402T061527Z&X-Goog-Expires=600&X-Goog-SignedHeaders=host&X-Goog-Signature=...
        expiration_minutes: 10
        expires_at: '2026-04-02T06:25:27.773121825Z'
    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

````