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

# Fetch Interview Call Recording

> Get the audio recording of a call for a given interview



## OpenAPI

````yaml GET /job-openings/{JOB_OPENING_ID}/interviews/{INTERVIEW_ID}/calls/{CALL_ID}/recording
openapi: 3.0.1
info:
  title: Alpharun API
  description: Alpharun REST API reference
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.alpharun.com/api/v1
security:
  - bearerAuth: []
paths:
  /job-openings/{JOB_OPENING_ID}/interviews/{INTERVIEW_ID}/calls/{CALL_ID}/recording:
    get:
      description: Get the audio recording of a call for a given interview
      parameters:
        - name: JOB_OPENING_ID
          in: path
          description: ID of the job opening
          required: true
          schema:
            type: string
            format: uuid
        - name: INTERVIEW_ID
          in: path
          description: ID of the interview
          required: true
          schema:
            type: string
            format: uuid
        - name: CALL_ID
          in: path
          description: ID of the call
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Full .wav audio recording
          content:
            audio/wav:
              schema:
                type: string
                format: binary
        '400':
          description: Unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Recording not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````