Skip to main content
GET
/
rtstream
/
{stream_id}
/
transcription
/
status
Get RTStream transcription status
curl --request GET \
  --url https://api.videodb.io/rtstream/{stream_id}/transcription/status \
  --header 'x-access-token: <api-key>'
{
  "success": true,
  "data": {
    "status": "running",
    "engine": "default",
    "language": "en",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}
Check whether transcription is currently active on a real-time stream.
  • Status values: running, stopped, not_configured
  • Returns the engine, language, and timestamps for the transcription configuration

Authorizations

x-access-token
string
header
required

API key for authentication (sk-xxx format)

Path Parameters

stream_id
string
required
Example:

"rts-12345"

Query Parameters

engine
string
default:default
Example:

"default"

Response

200 - application/json

Transcription status

success
boolean
Example:

true

data
object