TikEraser avatar

TikEraser

Deprecated

Pricing

from $0.07 / 1,000 results

Go to Apify Store
TikEraser

TikEraser

Deprecated

Download TikTok videos without watermarks. TikEraser extracts video details, thumbnails, and HD links for creators, marketers, and automation projects on Apify.

Pricing

from $0.07 / 1,000 results

Rating

0.0

(0)

Developer

choayb ouaret

choayb ouaret

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

1

Monthly active users

6 days ago

Last modified

Share

🎥 TikEraser Actor for Apify

This Apify actor integrates with the TikEraser API to process TikTok videos automatically.
It performs two key actions:

  1. Fetch TikTok video details (title, author, duration, thumbnail, etc.)
  2. Remove the watermark and return a clean downloadable video URL.

🚀 Features

  • Retrieve complete TikTok metadata
  • Get watermark-free video instantly
  • Outputs structured JSON
  • Ready to deploy on Apify Cloud

🧠 How It Works

  1. You provide a TikTok video URL.
  2. The actor:
    • Retrieves the video’s metadata via /video/detail
    • Removes the watermark via /remove-watermark
  3. Combines both responses into one JSON object and stores it in the dataset.

🧩 Input Schema

Example Input

{
"tiktokUrl": "https://www.tiktok.com/@ikhlasse.brhl/video/7564076455144000775"
}
### Example Output :
[
{
"inputUrl": "https://www.tiktok.com/@ikhlasse.brhl/video/7564076455144000775",
"details": {
"success": true,
"data": {
"title": "A day in my life ☕✨",
"author": "@ikhlasse.brhl",
"duration": 42,
"thumbnail": "https://p16-sign-va.tiktokcdn.com/...",
"resolution": "1080p"
}
},
"noWatermark": {
"success": true,
"data": {
"video_url": "https://v16-coin.tiktokcdn.com/sample_video.mp4",
"title": "A day in my life ☕✨",
"author": "@ikhlasse.brhl",
"duration": 42
},
"message": "Watermark removed successfully"
}
}
]