RTStream
Get RTStream transcription data
get/rtstream/{stream_id}/transcription/
Path parameters
stream_idstring required
Example:rts-12345
Query parameters
enginestring
Example:default
pageinteger
Example:1
page_sizeinteger
Example:100
startnumber
Example:1700000000
Filter by start timestamp
endnumber
Example:1700003600
Filter by end timestamp
sincenumber
Example:1700000000
Get only entries newer than this timestamp (for polling)
Response
Transcription data
Example response
{
"success": true,
"data": {
"transcription_records": [
{
"start": 1700000000,
"end": 1700000005,
"text": "transcribed text"
}
],
"total_count": 50,
"page": 1,
"page_size": 100
}
}