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

# Baixar gravação

> Baixa o áudio gravado de uma ligação.



## OpenAPI

````yaml /voice-api/api-reference/openapi-voice.json get /v1/voice/calls/{id}/recordings/{recordingId}/download
openapi: 3.0.3
info:
  title: Notifique API Voice
  description: >-
    Faça ligações de voz e controle chamadas em andamento. Autentique com
    `Authorization: Bearer sk_live_...` ou `x-api-key`.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Produção
security:
  - ntfVoiceBearerAuth: []
  - ntfVoiceApiKeyHeader: []
tags:
  - name: 'Voice: Chamadas'
    description: Originar, listar, consultar e controlar chamadas de voz.
paths:
  /v1/voice/calls/{id}/recordings/{recordingId}/download:
    get:
      tags:
        - 'Voice: Chamadas'
      summary: Baixar gravação
      description: Baixa o áudio gravado de uma ligação.
      operationId: ntfVoice_getV1VoiceRecordingDownload
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: recordingId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Arquivo de áudio (MP3).
          content:
            audio/mpeg:
              schema:
                type: string
                format: binary
        '401':
          $ref: '#/components/responses/NtfVoice_Unauthorized'
        '403':
          $ref: '#/components/responses/NtfVoice_Forbidden'
        '404':
          description: Gravação não encontrada.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfVoice_ErrorEnvelope'
components:
  responses:
    NtfVoice_Unauthorized:
      description: API Key ausente ou inválida.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/NtfVoice_ErrorEnvelope'
    NtfVoice_Forbidden:
      description: Escopo insuficiente.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/NtfVoice_ErrorEnvelope'
          example:
            success: false
            error: Forbidden
            message: 'Missing scope: voice:call'
            code: FORBIDDEN
  schemas:
    NtfVoice_ErrorEnvelope:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
        message:
          type: string
        code:
          type: string
  securitySchemes:
    ntfVoiceBearerAuth:
      type: http
      scheme: bearer
      description: 'API Key no formato Bearer (ex.: sk_live_...).'
    ntfVoiceApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````