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 July 2026
Try the TikTok Video Comment Replies API
See real data before writing a single line
Searching 44 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?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
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
}
}
},
{
"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
}
}
}
],
"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
}
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the TikTok Video Comment Replies API work?
Send a GET request with your API key and get back clean, structured JSON. Every response follows our unified schema with computed fields.
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 44 platforms covering 10B+ monthly active users.
One schema, every platform
Query 44 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
Every response 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 usAsk AI about SocialCrawl
Ready to scrape TikTok Video Comment Replies data?
Get your API key and start pulling TikTok data in under 60 seconds.
