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
Searching 51 platforms in parallel
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
| Parameter | Required | Description |
|---|---|---|
| comment_id | Yes | TikTok comment ID. This is the cid from the comments endpoint. |
| url | Yes | TikTok video URL. This is the url from the comments endpoint. |
| cursor | No | Cursor to get more replies. Get 'cursor' from previous 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.
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
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(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usHow do I get replies to a TikTok comment?
Where do I get the TikTok comment id from?
What fields does each reply include?
How do I paginate through all TikTok replies?
How much does the TikTok Comment Replies API cost?
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.
