Stream the raw audio recording (.ogg) of a specific LiveKit session.
.ogg audio file.
While the standard transcript endpoints provide the text version of a conversation, this endpoint allows you to play back the actual human and agent voices. This is incredibly valuable for QA, sentiment analysis, or embedding a playback widget directly into your own application’s dashboard.
x-api-key header to authenticate this request.sessionId (Path Parameter): The unique UUID of the completed LiveKit session.200 OK response from this endpoint returns a binary byte stream with a Content-Type of audio/ogg.
Example usage in a web application:
Because it returns raw audio, you can often plug this endpoint directly into an HTML <audio> tag within your authenticated frontend, or fetch it via a standard GET request and convert it into a Blob for playback.