
TikTok Comments Scraper
Pricing
$1.00 / 1,000 comments

TikTok Comments Scraper
Extract TikTok comments. Just add a TikTok URL and get TikTok video and profile data: comments, URLs, numbers of shares, followers, hashtags, hearts, video, and music metadata. Export scraped data, run the scraper via API, schedule and monitor runs or integrate with other tools.
4.5 (14)
Pricing
$1.00 / 1,000 comments
121
Monthly users
1.2k
Runs succeeded
97%
Response time
2.1 days
Last modified
2 days ago
Scraping comments from a certain date
Closed
If I have a video URL that was posted a week ago, but only want new to scrape new comments today, is there a way to filter for that in the scrape?

Hi Rob, thanks for your patience and for opening this issue!
Unfortunately, since there is no way to sort comments on TikTok by date, there is no other way other than just filtering them out. While we could add this custom filter feature to this scraper, it would mostly just bloat the input, because this filtering option can simply be achieved on the output.
You can simply use an Actor to Actor integration with a utility Actor like the Merge, Dedup & Transform Datasets. In the transforming function, set this code which will filter out only dates newer than the given one:
1async (items, { Apify }) => { 2 const cutoffDate = new Date("2024-07-25"); // Your date goes here 3 4 return items.filter((item) => { 5 const itemDate = new Date(item.createTimeISO); 6 const isNewEnoughDate = itemDate.getTime() > cutoffDate.getTime(); 7 8 return isNewEnoughDate 9 }) 10}
I hope this helps, thanks!
We also have some issues currently with users not being able to comment/reopen on closed issues, so I will keep this open for now and feel free to close this if everything has been resolved :) Thanks and happy scraping!
light_zep
Wonderful, Lukáš. Will give this a try. Thank you! - Rob
Pricing
Pricing model
Pay per resultThis Actor is paid per result. You are not charged for the Apify platform usage, but only a fixed price for each dataset of 1,000 items in the Actor outputs.
Price per 1,000 items
$1.00