Get Transcription Files
Retrieve the transcription files of a video.
GET
/api/v2/videos/{videoId}/transcription-files
Path Parameters
| Name | Type | Description |
|---|---|---|
| videoId | string, required | ID of video to return transcription files for |
Response Body
{
"transcriptionFiles": [
{
"locale": "string",
"filename": "string",
"size": 0,
"downloadUrl": "string"
}
]
}
| Parameter | Type | Description |
|---|---|---|
| transcriptionFiles | object, string | Each transcription file associated with the video contains an object with the following data: |
| locale | string | Each locale is listed whether in WebVTT or SRT format |
| filename | string | The filename of the transcription file |
| size | string | The size of the transcription file |
| downloadUrl | string | Where the file is located via Url |
Unauthorized error
Internal server error