Get video transcription
get/video/{video_id}/transcription/
Path parameters
video_idstring required
Example:m-12345
Query parameters
enginestring
Example:default
startnumber
Example:10.5
endnumber
Example:60
segmenterstring
Example:word
lengthinteger
Example:1
Response
Transcription data
Example response
{
"success": true,
"status": "completed",
"data": {
"transcript": [
{
"text": "Hello world",
"start": 1.5,
"end": 3.2
}
]
}
}