TikTok Comments Scraper — Replies, Likes & Commenters avatar

TikTok Comments Scraper — Replies, Likes & Commenters

Pricing

from $0.49 / 1,000 comments

Go to Apify Store
TikTok Comments Scraper — Replies, Likes & Commenters

TikTok Comments Scraper — Replies, Likes & Commenters

Scrape every comment on any TikTok video — no login, no cookies. Get comment text, like count, reply count, posting date, detected language, and the commenter's handle, nickname and ID. Optional threaded replies. Deduplicated pagination. JSON, CSV, or Excel.

Pricing

from $0.49 / 1,000 comments

Rating

0.0

(0)

Developer

Muhamed Didovic

Muhamed Didovic

Maintained by Community

Actor stats

0

Bookmarked

13

Total users

12

Monthly active users

3 days ago

Last modified

Share

TikTok Comments Scraper

TikTok Comments Scraper

Scrape every comment on any public TikTok video — no login, no cookies. Paste video links and get back each comment with its text, like count, reply count, posting date, detected language, and the commenter's handle, nickname and ID. Threaded replies optional. From $0.49 per 1,000 comments. Export as JSON, CSV, or Excel.

Why Use This Scraper?

  • No duplicate rows. TikTok's comment cursor counts requested items, not delivered ones, so consecutive pages overlap. This Actor deduplicates by comment ID, so 1,000 rows means 1,000 distinct comments — not 980 plus 20 repeats.
  • Threaded replies — switch on includeReplies and each reply arrives as its own row, tagged isReply with a parentCommentId pointing at the comment it answers.
  • Language on every comment — TikTok's own detected language code (en, es, fr, …), so you can filter a global comment section down to the market you care about.
  • Full commenter identity — handle, nickname, numeric ID, and secUid, plus a ready-made profile URL. The secUid is the key TikTok's own APIs use, so these rows feed straight into follower or profile enrichment.
  • Author signalsisPinnedByAuthor and isLikedByAuthor show which comments the creator promoted or endorsed.
  • No TikTok account needed — nothing to configure, no 2FA, no cookies, zero risk to your own account.

Overview

This Actor returns one dataset row per comment. For each input video it walks the comment list page by page until the list ends or your cap is reached, deduplicating as it goes. With replies enabled it then fetches the thread under every comment that has one. Data is retrieved through a third-party TikTok data provider, so no TikTok credentials are ever required.

Supported Inputs

InputExample
Full video URLhttps://www.tiktok.com/@user/video/7069503422751362346
Share linkhttps://vm.tiktok.com/ZMxxxxxx/
Bare video ID7069503422751362346
  • Mix formats freely — one per line. Share links are resolved by following the redirect, which costs nothing extra.
  • Not supported: profile URLs, hashtag pages, or live streams. Videos that are private, deleted, or have comments disabled return an error item and the run continues.

Pure HTTP. No browser, no CAPTCHA solver, no cookies.

Use Cases

AudienceHow they use it
Brand & social teamsRead what people actually say under your videos and your competitors'
Market researchersMine unfiltered opinion at scale, filtered by comment language
CreatorsFind the top-liked questions worth answering in a follow-up video
Community / moderationExport a full comment record for review or archiving

How It Works

How the TikTok Comments Scraper works

  1. Resolve — each input becomes a numeric video ID (share links are followed to their destination first).
  2. Paginate — the comment list is walked page by page, deduplicated by comment ID, until the end or your cap.
  3. Emit — every comment becomes a row with its stats, language, and commenter identity. With replies on, each thread is fetched and appended.

Input Configuration

FieldTypeRequiredNotes
videosarray of stringsYesVideo URLs, share links, or bare IDs.
maxCommentsPerVideointegerNoCap top-level comments per video. Omit to collect the whole list.
includeRepliesbooleanNoAlso collect replies as extra rows. Default: false.
maxRepliesPerCommentintegerNoCap replies per comment when replies are on. Default: 50.

Example input

{
"videos": [
"https://www.tiktok.com/@caralinerosee/video/7069503422751362346",
"7069503422751362346"
],
"maxCommentsPerVideo": 500,
"includeReplies": true,
"maxRepliesPerComment": 20
}

Output Overview

Each item is a flat object describing one comment — top-level or reply. Runs stream to the default dataset, exportable as JSON, CSV, Excel, or via the API.

Output Samples

{
"videoId": "7069503422751362346",
"videoUrl": "https://www.tiktok.com/@caralinerosee/video/7069503422751362346",
"commentId": "7069518147623142190",
"isReply": false,
"parentCommentId": null,
"text": "L mom",
"likeCount": 210324,
"replyCount": 111,
"createTime": "2022-02-27T22:21:06.000Z",
"language": "en",
"isPinnedByAuthor": false,
"isLikedByAuthor": false,
"commenterUsername": "msinvincible",
"commenterNickname": "invincible 🥀",
"commenterId": "16973289",
"commenterSecUid": "MS4wLjABAAAAAfY2QvhuZWvS7pnpX3QUkDNOcqfLVv2EA9ESN1FikN0",
"commenterVerified": false,
"commenterProfileUrl": "https://www.tiktok.com/@msinvincible"
}

A reply row carries the same fields with isReply: true and parentCommentId set to the comment it answers.

Key Output Fields

FieldDescription
videoId / videoUrlThe video the comment belongs to
commentIdUnique comment ID (rows are deduplicated on this)
isReply / parentCommentIdWhether the row is a reply, and which comment it answers
textThe comment itself
likeCount / replyCountLikes on the comment, and how many replies it has
createTimeWhen it was posted (ISO 8601)
languageTikTok's detected language code for the comment
isPinnedByAuthor / isLikedByAuthorWhether the video's creator pinned or liked it
commenterUsername / commenterNicknameWho wrote it
commenterId / commenterSecUidTikTok's numeric and secure IDs for the commenter
commenterVerified / commenterProfileUrlVerification badge and a direct profile link

FAQ

Do I need to log in or provide cookies? No. The Actor never touches your TikTok account.

Will I get duplicate comments? No. TikTok's pagination cursor advances by the number of comments requested rather than delivered, so raw pages overlap. This Actor deduplicates by comment ID before writing rows.

How many comments can I get from one video? As many as TikTok serves — videos with tens of thousands of comments paginate fully. Use maxCommentsPerVideo to cap cost on popular videos.

Are replies included? Only if you switch on includeReplies. Replies cost roughly one extra request per comment that has them, so runs take longer and cost more. Each reply is its own row linked by parentCommentId.

What happens with a private or deleted video? It returns an error item explaining why, and the run continues with your other videos.

What does it cost? Pay per result: from $0.49 per 1,000 comments, plus a small per-run start fee. No subscription.

Support

Found a bug or need a field added? Open an issue on the Actor's Issues tab in Apify Console, or email muhamed.didovic@gmail.com.

Additional Services

Need a custom TikTok or social-media scraper, enrichment pipeline, or a private version of this Actor? Custom builds available — reach out at muhamed.didovic@gmail.com.

Explore More Scrapers

Browse the full portfolio: muhamed-didovic.github.io

🤖 For AI Agents & LLM Apps

Purpose: Return all comments on public TikTok videos, optionally including threaded replies.

Minimal tested input:

{ "videos": ["https://www.tiktok.com/@caralinerosee/video/7069503422751362346"], "maxCommentsPerVideo": 50 }

Output: array of flat objects, one per comment. Fields: videoId, videoUrl, commentId, isReply, parentCommentId, text, likeCount, replyCount, createTime, language, isPinnedByAuthor, isLikedByAuthor, isHighPurchaseIntent, commenterUsername, commenterNickname, commenterId, commenterSecUid, commenterVerified, commenterProfileUrl.

Behavior & billing: Pay-per-event — one charge per result. Rows are deduplicated by commentId. Private/deleted videos and unresolvable links yield one error item each instead of failing the run. includeReplies: true adds a request per comment that has replies. No login/cookies required.

⚠️ Disclaimer

This Actor accesses publicly available data on TikTok for legitimate research, market-intelligence, and business-analysis purposes. It does not log in, bypass authentication, or access private content. Use of this Actor must comply with TikTok's Terms of Service and all applicable laws, including data-protection regulations (GDPR, CCPA, etc.). The authors are not responsible for any misuse. Users must:

  • Respect rate limits and avoid overloading TikTok's infrastructure
  • Not use scraped data to violate user privacy or platform terms
  • Process any personal data only with a lawful basis and in compliance with their jurisdiction
  • Not republish scraped content in violation of copyright

We do not store scraped data; the Actor returns it directly to your Apify dataset for your authorized use. TikTok is a trademark of ByteDance Ltd.; this Actor is not affiliated with or endorsed by TikTok or ByteDance.

SEO Keywords

tiktok comments scraper, scrape tiktok comments, tiktok comment export, tiktok comments to csv, tiktok comment replies scraper, tiktok thread scraper, export tiktok comments, tiktok comment analysis, tiktok sentiment analysis data, tiktok audience research, tiktok comment api, tiktok comments no login, tiktok commenter list, tiktok engagement analysis, tiktok social listening, tiktok brand monitoring, tiktok comment language filter, tiktok video comments download, tiktok market research tool, tiktok ugc mining, social media comment scraper, apify tiktok scraper