action rev_get_captions { label: "Get Captions" description: "Returns the caption output for a transcription job. We currently support SubRip (SRT) and Web Video Text Tracks (VTT) output.\nCaption output format can be specified in the `Accept` header. Returns SRT by default.\n***\nNote: For streaming jobs, transient failure of our storage during a live session may prevent the final hypothesis elements from saving properly, resulting in an incomplete caption file. This is rare, but not impossible.\n" provider: rev method: GET path: "/jobs/{id}/captions" encoding: json input: { type: "object" properties: { Accept: { type: "string" enum: ["application/x-subrip", "text/vtt"] } speaker_channel: { type: "integer" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }