v1

latestOpenAPI 3.0.32026-07-26229361630.0 KB
sessions

Get Session Audio

Fetch the complete recording of a session as a presigned download URL (single combined MP3). Available for businesses with full-audio access enabled — contact support to enable it for your workspace. The combined audio is prepared in the background after End Session; until it is ready this endpoint returns 404 audio_not_available, so retry after a short delay. The recording is retained for 24 hours after the consultation by default (configurable per business) and is deleted after that — call this API within that window and download the audio via the returned presigned URL. Presigned URLs also expire — fetch a fresh URL when needed, don't store it.

get/voice/v1/sessions/{session_id}/audio

Path parameters

session_idstring required
Example:ses_abc123def456

Session ID returned by Create Session

Response

Presigned URL for the combined session audio

session_idstring
statusstring
audio_urlstring

Presigned URL of the combined session audio (MP3).

expires_ininteger

URL validity in seconds.

expires_atinteger

Unix epoch (seconds) when the URL expires.

Example response

{
  "session_id": "ses_abc123def456",
  "status": "success",
  "expires_in": 86400,
  "expires_at": 1753162800
}