Use TikTok URLs with the Fast Transcriber API
Queue canonical TikTok videos and resolve vm.tiktok.com or vt.tiktok.com share links.
A durable transcript workflow for public TikTok videos
Prefer canonical video URLs for logging and deduplication, while allowing still-valid short share links to resolve through the same asynchronous job API.
Canonical videos
Use tiktok.com/@creator/video/{id} when possible.
Short shares
vm.tiktok.com and vt.tiktok.com links work while their redirects remain public.
Easy deduplication
Retain the canonical video ID in your own application.
Common result
Text and segments use the same schema as other Fast Transcriber jobs.
From request to transcript
A predictable sequence you can reuse in server applications, automations, and internal tools.
- 01
Submit one public URL
Send the media URL as source_url with a server-side bearer key.
- 02
Store the job location
Read the job ID and Location header from the 202 Accepted response.
- 03
Retrieve the result
Poll with bounded backoff until the status is completed or failed.
Make the request
Examples use the production API origin and an environment variable for the secret key.
curl --include --request POST https://fast-transcriber.com/api/v1/transcriptions \
--header "Authorization: Bearer $FAST_TRANSCRIBER_API_TOKEN" \
--header "Content-Type: application/json" \
--data '{
"source_url": "https://www.tiktok.com/@creator/video/1234567890123456789",
"speaker_diarization": false
}'Requirements and boundaries
- The video and its redirect chain must be public and available without cookies.
- Submit one video, not a profile, sound page, hashtag, or feed.
- Short links must remain valid long enough for asynchronous resolution.
- Do not retry a removed or restricted video indefinitely.
Frequently asked questions
Do TikTok short links work?+
They can be submitted while the vm.tiktok.com or vt.tiktok.com redirect still resolves to a public video.
Should I store the short URL?+
Prefer storing the canonical video URL or ID after resolution so duplicate shares are easier to detect.
Can I submit private TikTok videos?+
No. source_url is for media accessible without signing in.