---
title: "Get Session Audio"
method: GET
path: "/voice/v1/sessions/{session_id}/audio"
tags: ["sessions"]
---

# Get Session Audio

`GET /voice/v1/sessions/{session_id}/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.

## Path parameters

- `session_id` string, required

## Response `200`

Presigned URL for the combined session audio

- SessionAudioResponse
  - `session_id` string
  - `status` string
  - `audio_url` string — Presigned URL of the combined session audio (MP3).
  - `expires_in` integer — URL validity in seconds.
  - `expires_at` integer — Unix epoch (seconds) when the URL expires.

## Other responses

- `403` — Full-audio access is not enabled for this business (`audio_not_enabled`)
- `404` — Session not found (`resource_not_found`), or the combined audio is not ready yet (`audio_not_available`)

---

[API](https://skmtc.net/eka/apis/eka-developer-apis.md) · [All operations](https://skmtc.net/eka/apis/eka-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/eka/eka-developer-apis/revisions/9ea23456f722/schema)
