100 free credits. No credit card required.Start building
Logo
100 free credits. No credit card required

TikTok Video Comment Replies API

Scrape TikTok Video Comment Replies data with one API call. Fetches replies to a specific TikTok comment by its ID. Returns an array of comment objects each with text, user info, and creation time. Paginate with the cursor from the previous response.

Last updated August 2026Maintained by the SocialCrawl team

Returns the replies under a single TikTok comment, with each reply's text, author, likes, and timestamps.

Use it after post/comments: pass the comment_id it returned together with the same video url to expand one thread.

Try the TikTok Video Comment Replies API

See real data before writing a single line

GET/v1/tiktok/video/comment/replies

TikTok comment ID. This is the cid from the comments endpoint.

TikTok video URL. This is the url from the comments endpoint.

1 optional parameters

Cursor to get more replies. Get 'cursor' from previous response.

Searching 51 platforms in parallel

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·Apple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
TikTok API

What can you do with the Video Comment Replies API?

The Video Comment Replies endpoint gives you structured TikTok data with computed fields in a single request. No scraping infrastructure to build or maintain.

Example Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://www.socialcrawl.dev/v1/tiktok/video/comment/replies?comment_id=7623828115408274207&url=https%3A%2F%2Fwww.tiktok.com%2F%40stoolpresidente%2Fvideo%2F7623818255903329566"
import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/tiktok/video/comment/replies",
    params={
    'comment_id': '7623828115408274207',
    'url': 'https://www.tiktok.com/@stoolpresidente/video/7623818255903329566',
    },
    headers={"x-api-key": "YOUR_API_KEY"},
)

data = response.json()
const response = await fetch(
  "https://www.socialcrawl.dev/v1/tiktok/video/comment/replies?comment_id=7623828115408274207&url=https%3A%2F%2Fwww.tiktok.com%2F%40stoolpresidente%2Fvideo%2F7623818255903329566",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

Parameters

ParameterRequiredDescription
comment_idYesTikTok comment ID. This is the cid from the comments endpoint.
urlYesTikTok video URL. This is the url from the comments endpoint.
cursorNoCursor to get more replies. Get 'cursor' from previous response.
Example Response

What does the TikTok Video Comment Replies API return?

This example shows the endpoint's response shape and fields. Values are illustrative; this is not a live capture.

Example response
{
  "success": true,
  "platform": "tiktok",
  "endpoint": "/v1/tiktok/video/comment/replies",
  "data": {
    "items": [
      {
        "comment": {
          "id": "7623849601356251917",
          "url": null,
          "parent_id": "7623828115408274207",
          "post_id": "7623818255903329566",
          "text": "Tea by the Sea with Dave P!",
          "author": {
            "username": "oakleighsinclair",
            "display_name": "oakleighsinclair",
            "avatar_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/879c1343fe2d07f2ed4a9de856899c16~tplv-tiktokx-cropcenter:100:100.jpg",
            "verified": false
          },
          "engagement": {
            "likes": 258,
            "replies": null
          },
          "flags": {
            "pinned": null,
            "deleted": false
          },
          "published_at": "2026-04-01T17:50:55.000Z",
          "ext": {
            "published_at_epoch": 1775065855
          }
        },
        "computed": {
          "language": "en"
        }
      },
      {
        "comment": {
          "id": "7624839492000006943",
          "url": null,
          "parent_id": "7623828115408274207",
          "post_id": "7623818255903329566",
          "text": "yesssss",
          "author": {
            "username": "alyfromdavalley818",
            "display_name": "ᎪᏞᎽՏϴΝ ᏟϴᏞᏞᎬͲͲᎬ ՏᎻϴᎡ",
            "avatar_url": "https://p19-common-sign.tiktokcdn-us.com/tos-useast8-avt-0068-tx2/50760b4566d2005dbaec8b6bc29bad6e~tplv-tiktokx-cropcenter:100:100.jpg",
            "verified": false
          },
          "engagement": {
            "likes": 1,
            "replies": null
          },
          "flags": {
            "pinned": null,
            "deleted": false
          },
          "published_at": "2026-04-04T09:53:22.000Z",
          "ext": {
            "published_at_epoch": 1775296402
          }
        },
        "computed": {
          "language": null
        }
      }
    ],
    "next_cursor": "3",
    "total": 59,
    "dropped": 0
  },
  "credits_used": 1,
  "credits_remaining": 9995,
  "request_id": "req-a1b2c3d4e5f6",
  "cached": false,
  "pagination": {
    "next_cursor": "sc.eyJ2IjoyLCJjIjoiMyIsInAiOiJjdXJzb3IifQ",
    "has_more": true,
    "page_size": 3
  }
}

Illustrative fixture for the documented response shape. Values are examples, not a production capture.

API Details

How does the TikTok Video Comment Replies API work?

Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.

Method

GET

Response

JSON

Why SocialCrawl

Why use SocialCrawl for TikTok Video Comment Replies data?

We handle the complexity of TikTok data extraction so you can focus on building. Unified schema, AI enrichment, and zero platform logic in your code.

Developer First

How do you scrape social media data in seconds?

The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 51 platforms covering 10B+ monthly active users.

One schema, every platform

Query 51 platforms with identical response structures. Write your integration once.

Computed fields, not just scraped

When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.

See your data before you code

Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 51 platforms
FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
How do I get replies to a TikTok comment?
Send a GET request to /v1/tiktok/video/comment/replies with the comment_id (from the Comments endpoint's cid) and the video url. SocialCrawl returns a paginated list of reply comments with text, author, and timestamps.
Where do I get the TikTok comment id from?
Call /v1/tiktok/post/comments first and take the cid field from any comment in the response. Pass that value as the comment_id parameter on the replies endpoint along with the original video URL.
What fields does each reply include?
Each reply returns comment id, author username and display name, reply text, like count, creation timestamp, and the parent comment id so you can reconstruct the thread.
How do I paginate through all TikTok replies?
Read the cursor field from the response and pass it as the cursor parameter on your next request. Repeat until cursor is 0. You then have every public reply under that comment.
How much does the TikTok Comment Replies API cost?
Each request costs 1 credit on the standard tier regardless of how many replies are returned per page. New accounts get 100 free credits with no credit card required.

Ask AI about SocialCrawl

Ready to scrape TikTok Video Comment Replies data?

Get your API key and start pulling TikTok data in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown