A simple experimental Express.js API for downloading TikTok videos without watermark. [vm.tiktok.com & vt.tiktok.com links are not supported yet!]
This project provides a RESTful API built with Express.js to download TikTok videos without the watermark. It utilizes the TikTok API to fetch video data and return the video URL for downloading.
- Download TikTok videos without watermarks.
- Simple and easy-to-use API.
- Customizable for further integration.
- Clone the repository:
git clone https://github.com/joenior/tiktok-downloader-api.git
Install the required dependencies:
cd tiktok-downloader-api
npm install
Start the server:
npm start
To download TikTok videos without watermarks using this API, you can send a POST request with the TikTok video URL to the /download endpoint.
Here's an example using cURL:
curl -X POST -H "Content-Type: application/json" -d '{"url": "https://www.tiktok.com/@username/videoid"}' http://localhost:3000/download
Replace "https://www.tiktok.com/@username/videoid" with the TikTok video URL you want to download.
POST /download: Download a TikTok video without watermark by providing the video URL in the request body as JSON.
This project is licensed under the MIT License - see the LICENSE file for details.