Skip to main content
GET
/
api
/
calls
/
get_call_recording
/
{call_id}
Get Call Recording
curl --request GET \
  --url https://voiceagent.infers.co/api/calls/get_call_recording/{call_id} \
  --header 'Authorization: <api-key>'
{
  "call_id": "abc123",
  "recordingUrl": "https://...mono.wav",
  "stereoRecordingUrl": "https://...stereo.wav"
}

Get Call Recording

Use this endpoint to fetch the recording of a call.

Authorizations

Authorization
string
header
required

API key for authentication. Email vaibhav@infer.so to get your API key

Path Parameters

call_id
string
required

The unique ID of the call.

Response

Successful Response

call_id
string
required
recordingUrl
string<uri>
required

URL to the mono audio recording of the call.

stereoRecordingUrl
string<uri>
required

URL to the stereo audio recording of the call.