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

# Get Recording Playback Url



## OpenAPI

````yaml /api-reference/openapi.json get /v1/voice/recordings/{recording_id}/playback-url
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/voice/recordings/{recording_id}/playback-url:
    get:
      tags:
        - voice
      summary: Get Recording Playback Url
      operationId: >-
        get_recording_playback_url_v1_voice_recordings__recording_id__playback_url_get
      parameters:
        - name: recording_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Recording Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordingPlaybackResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    RecordingPlaybackResponse:
      properties:
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
        expires_in:
          type: integer
          title: Expires In
        duration_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Duration Ms
        bytes:
          anyOf:
            - type: integer
            - type: 'null'
          title: Bytes
        status:
          type: string
          title: Status
      type: object
      required:
        - expires_in
        - duration_ms
        - bytes
        - status
      title: RecordingPlaybackResponse
    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:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````