Social Media
TikTok Comment Replies
List replies to a TikTok comment — reply id, text, author, and like count — with pagination, as JSON.
POST/api/v1/tiktok/video/comments/replies
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonvideo_idstringrequiredThe TikTok video id.
Example: 7655373230009634070
comment_idstringrequiredThe parent comment id (from Video Comments).
Example: 7655749961862595350
cursorstringPagination cursor from a previous response.
countnumberNumber of results per page.
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.tiktok.comment_replies(video_id="7655373230009634070", comment_id="7655749961862595350")
print(results)Response
"cursor": 5,
"has_more": 1,
"status_msg": "",
"total": 7
},
"response_time": 517,
"credits_used": 1,
"credits_remaining": 4742
}