One batch result
get_transcripts_resultRetrieve one video's transcript from a batch job by supplying the job ID and video ID. Returns 404 if the video isn't ready, so check the job status first.
Instructions
Read ONE video's result out of a batch job by its video id, without paging through get_transcripts_results. 404 means the job does not exist or this video has not finished yet — check get_transcripts_job before concluding anything. Free.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | id returned by submit_transcripts_job | |
| video_id | Yes | one of the video ids the job was submitted with |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | ||
| video_id | No | ||
| transcript | No | format=json: array of {text, start, duration} segments (seconds); text/srt/vtt/srv3: one string in that format |