Get comment replies from TikTok with KonbiniAPI
Returns a paginated list of replies to a TikTok comment. Maximum 50 per page. Includes author info, like counts, and reply timestamps.
This API endpoint returns a paginated list of replies to a TikTok comment. Maximum 50 per page. Includes author info, like counts, and reply timestamps.
Perfect for
- Full thread analysis and conversation depth mapping
- Reply chain monitoring for community health scoring
- Nested sentiment analysis for engagement quality research
1. Make the request
const response = await fetch("https://api.konbiniapi.com/v1/tiktok/videos/7403212/comments/123456/replies", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
2. Get clean JSON
Response (200 OK)
{
"data": {
"@context": [
"https://www.w3.org/ns/activitystreams#",
"https://konbiniapi.com/ns/social#"
],
"type": "OrderedCollectionPage",
"partOf": "https://api.konbiniapi.com/v1/tiktok/videos/7611615657754381599/comments/7611646895321105170/replies",
"totalItems": 1309,
"cursor": "0",
"nextCursor": "1772217402000",
"next": "https://api.konbiniapi.com/v1/tiktok/videos/7611615657754381599/comments/7611646895321105170/replies?cursor=1772217402000&count=30",
"itemCount": 30,
"orderedItems": [
{
"type": "Note",
"id": "https://www.tiktok.com/@khaby.lame/video/7611615657754381599/comment/7611646895321105170",
"url": "https://www.tiktok.com/@khaby.lame/video/7611615657754381599/comment/7611646895321105170",
"entityId": "7611646895321105170",
"content": "This man hasn't been in my fyp for so long",
"language": "en",
"published": "2026-02-27T20:37:38.000Z",
"likeCount": 93210,
"replyCount": 96,
"status": "1",
"isPinned": false,
"isLiked": false,
"attributedTo": {
"type": "Person",
"id": "https://www.tiktok.com/@khaby.lame",
"url": "https://www.tiktok.com/@khaby.lame",
"entityId": "MS4wLjABAAAAwAg0rSzO65WQfz4RzQgGv2Xdv108BgPXhRrrmNVIHQZ9PO8-flwwRtEppYTS0OjA",
"name": "Khabane Lame",
"preferredUsername": "khaby.lame",
"summary": "Just a guy who reacts",
"attachment": [
{
"type": "Link",
"href": "https://linktr.ee/khaby.lame",
"rel": "preferred"
}
],
"published": "2020-03-15T00:00:00.000Z",
"isPrivate": false,
"isVerified": true,
"isLive": false,
"hasLikes": true,
"hasPlaylists": true,
"followerCount": 160300000,
"followingCount": 85,
"language": "en",
"likeCount": 2600000000,
"likedCount": 5300,
"mediaCount": 1309,
"icon": {
"type": "Image",
"url": "https://p16-sign.tiktokcdn-us.com/tos-maliva-avt-0068/avatar.jpeg",
"width": 576,
"height": 1024
},
"image": [
{
"type": "Image",
"url": "https://p16-sign.tiktokcdn-us.com/tos-maliva-avt-0068/avatar.jpeg",
"width": 576,
"height": 1024
}
]
},
"inReplyTo": "https://www.tiktok.com/@khaby.lame/video/7611615657754381599"
}
]
}
}