Tiktok Video Downloader avatar
Tiktok Video Downloader

Pricing

$10.00/month + usage

Go to Apify Store
Tiktok Video Downloader

Tiktok Video Downloader

Developed by

shareze

shareze

Maintained by Community

Get the TikTok video’s download URL and original URL. You can use the download URL to download the video directly, or embed the original URL into your workspace.

0.0 (0)

Pricing

$10.00/month + usage

1

2

2

Last modified

13 hours ago

This Apify Actor is designed to download TikTok videos using their URLs. It retrieves the download link and the original video address.

How to Use

1. Input Configuration

The Actor requires an input JSON object to define the video URL. The structure of the input is as follows:

{
"video_url": "https://www.tiktok.com/@nike/video/7552898105033755918"
}
  • video_url: (Required) The TikTok video URL. For example:
    • https://www.tiktok.com/player/v1/7552898105033755918
    • https://www.tiktok.com/@nike/video/7552898105033755918

2. Output Data

The Actor returns an object containing the download link and the original video address. The structure of the output is as follows:

{
"status": "success",
"downloadAddress": "https://example.com/download-link",
"videoOriginalAddress": "https://example.com/original-video-link"
}
  • status: The status of the operation (success or error).
  • downloadAddress: The URL to download the video.
  • videoOriginalAddress: The original address of the video.

If an error occurs, the output will include an error message:

{
"status": "error",
"message": "no download link found"
}

3. Running the Actor

  1. Deploy the Actor on the Apify platform.
  2. Provide the input JSON in the Actor's input configuration.
  3. Run the Actor to download the video.
  4. Retrieve the output dataset containing the download link and video details.

4. Example Use Case

To download a TikTok video:

  1. Set the input as:
    {
    "video_url": "https://www.tiktok.com/@nike/video/7552898105033755918"
    }
  2. Run the Actor.
  3. Retrieve the output dataset containing the download link.

Notes

  • This Actor uses a third-party service to generate download links.
  • Ensure that the input URL is a valid TikTok video URL.
  • The Actor is optimized for performance but may require adjustments based on TikTok's response behavior.