Social Media
TikTok Video Comments
List comments on a TikTok video — comment id, text, author, and like count — with pagination, as JSON.
POST/api/v1/tiktok/video/comments
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
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.video_comments(video_id="7655373230009634070")
print(results)Response
"alias_comment_deleted": false,
"cursor": 5,
"has_filtered_comments": 0,
"has_more": 1,
"reply_style": 2,
"status_msg": "",
"top_gifts": null,
"total": 268
},
"response_time": 574,
"credits_used": 1,
"credits_remaining": 4743
}