Features
Subtitles: SRT and VTT
Export any completed transcript as SubRip (SRT) or WebVTT (VTT) caption files.
Any completed transcript can be exported as captions in the two standard formats: SRT (SubRip, the common choice for video editors and players) and VTT (WebVTT, the native format for HTML5 video). The endpoints return the caption file as plain text.
GET
/v2/transcripts/{transcript_id}/srtDownload the transcript as an SRT caption fileGET
/v2/transcripts/{transcript_id}/vttDownload the transcript as a WebVTT caption fileQuickstart
curl -s https://api.realtimevoicekit.com/v2/transcripts/tr_9f2c31b8/srt \
-H "Authorization: Bearer rtvk_your_api_key" -o captions.srt
curl -s https://api.realtimevoicekit.com/v2/transcripts/tr_9f2c31b8/vtt \
-H "Authorization: Bearer rtvk_your_api_key" -o captions.vtt1
00:00:00,240 --> 00:00:04,620
Welcome back to the show. Today we are talking pricing.
2
00:00:04,980 --> 00:00:07,410
Great to be here. Let us dive right in.Notes
- Subtitles are only available once the transcript status is completed; earlier requests return 409 with code not_ready.
- Only srt and vtt are valid format segments; anything else returns 400 with code bad_format.
- The response Content-Type is application/x-subrip for SRT and text/vtt for VTT.