v5

latestOpenAPI 3.0.3MITraw.githubusercontent.com2026-08-0112516159.5 KB
RTStream

Start or stop RTStream transcription

post/rtstream/{stream_id}/transcription/

Path parameters

stream_idstring required
Example:rts-12345

Request body

action'start' | 'stop' required
enginestring
ws_connection_idstring

Example request

{
  "action": "start",
  "engine": "default",
  "ws_connection_id": "conn-123"
}

Response

Transcription status updated

successboolean

Example response

{
  "success": true,
  "data": {
    "status": "running",
    "engine": "default"
  }
}