This is a server-side API for Tiktok downloader. It allows users to download videos from Tiktok by providing the URL of the video.
- Clone the repository:
git clone https://github.com/BOTCAHX/tiktokdl-api
- Open files
cd tiktokdl-api
- Install the dependencies:
npm install
- Start the server:
node index.js
- Access the API endpoint using the following format:
Replace
GET /tiktok/api.php?url=[URL_TIKTOK]
[URL_TIKTOK]
with the actual URL of the Tiktok video you want to download.
The API will respond with a JSON object containing the download URL and other relevant information about the video.
Example response:
{
"audio": [
"https://www.tikwm.com/video/music/6990916139345808666.mp3"
],
"video": [
"https://www.tikwm.com/video/media/play/6990916139345808666.mp4"
]
}
If there is an error in the URL or the video is not available for download, the API will respond with a server error.
This project is licensed under the MIT License.