TikTok Video Download API

Get a direct, no-watermark MP4 URL for any public TikTok video with one REST call - ready to stream, store, or re-process.

A TikTok download API built for clean, watermark-free files

If you are searching for a TikTok video download API that returns a no-watermark MP4 you can actually ship, this is it. TikLiveAPI takes a single public TikTok URL and hands back direct, ready-to-use media links: the raw video without the watermark, an HD variant, and the original audio as an MP3. There is no headless browser to babysit, no signature to reverse-engineer, and no overlay to crop out in post. You send one GET request, you get back JSON with the file URLs, and your app does the rest.

This page is for engineers who need download links at scale: people building content backup tools, social-media schedulers, media-archive pipelines, ad-creative libraries, or anything that has to fetch source files reliably instead of scraping HTML and hoping the markup did not change overnight. Every endpoint is a plain GET, authenticated with a single X-Api-Key header, and billed pay-as-you-go from credits that never expire. New accounts start with 100 free credits, so you can wire the whole flow up before you spend anything.

What the download endpoints return

No-watermark video

A GET to /download-video/ with the video url returns a video field: a direct, watermark-free MP4 link plus a video_hd link for the higher-quality variant. Perfect for archiving or re-publishing source footage without the TikTok logo baked in.

Audio (MP3) extraction

/download-music/ takes the same video or sound url and returns a music field pointing at the original audio track as a downloadable MP3. Useful when you only need the sound, for example to build a sound library or feed a transcription step.

Full metadata with every link

Need the watermarked copy, dimensions, and stats alongside the clean file? /post-detail/ returns play, wmplay, and hdplay URLs, size / hd_size, duration, plus play, like, comment, and share counts in one call.

Embedded music details

The /post-detail/ response also nests a music_info object (track id, title, author, cover, duration, and whether it is the original sound), so you can catalog the audio behind a video without a second request.

Quick start

Authenticate with your API key in the X-Api-Key header and pass the public TikTok video URL as the url query parameter. Here is a complete, runnable call against the live download endpoint:

curl "https://api.tikliveapi.com/download-video/?url=https%3A%2F%2Fwww.tiktok.com%2F%40tiktok%2Fvideo%2F7460937381265411370" \
  -H "X-Api-Key: YOUR_API_KEY"

The response is small and predictable: a no-watermark MP4 in video and an HD copy in video_hd.

{
  "video": "https://v16-coin.tiktokcdn.com/.../?mime_type=video_mp4&...",
  "video_hd": "https://v16.tokcdn.com/.../7460937381265411370_original.mp4"
}

Swap /download-video/ for /download-music/ and the same request shape returns a single music field with the MP3 link. Both endpoints take only the url parameter, so there is nothing else to configure.

Common use cases

Watermark-free content backup

Pull the video and video_hd links from /download-video/ to mirror a creator's own footage into your storage. Our walkthrough on downloading TikTok videos without a watermark via API covers the end-to-end flow.

Bulk media archiving

Enumerate a profile or playlist, then resolve each video through the download endpoints to build a queryable archive. See our notes on production patterns for bulk TikTok video archives when you scale this past a handful of clips.

Sound libraries and audio tooling

Use /download-music/ to collect original sounds as MP3s for music-trend dashboards or label A&R workflows. Our TikTok music API cookbook has recipes that pair audio extraction with track metadata.

Transcription and AI summaries

Grab the clean MP4 or extracted audio, then feed it to a speech-to-text or LLM step to generate captions and summaries. We cover summarizing TikTok videos with LLMs and the API as a downstream pattern.

Because /post-detail/ returns the watermarked wmplay copy and full engagement stats alongside the clean file, you can also drive ad-creative libraries and competitor monitoring from the very same response, no extra round trip required.

Start downloading in minutes

Create an account and you get 100 free credits to test the no-watermark video and MP3 endpoints with real URLs. Try them live in the interactive playground first, then drop the generated request straight into your code. Credits are pay-as-you-go and never expire, so you only pay for the calls you actually make.

Start building with real-time TikTok data today.

Get 100 Free Credits View Docs