Stream Transcript Audio
Transcripts API Endpoints
Stream Transcript Audio
Stream the raw audio recording (.ogg) of a specific LiveKit session.
GET
Stream Transcript Audio
Retrieve the actual voice recording of a completed session as anDocumentation Index
Fetch the complete documentation index at: https://docs.lyzr.ai/llms.txt
Use this file to discover all available pages before exploring further.
.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.
Authentication Required: You must include your API key in the
x-api-key header to authenticate this request.Required Parameters
sessionId(Path Parameter): The unique UUID of the completed LiveKit session.
Handling the Response
Unlike most of our API endpoints which return JSON, a successful200 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.