cURL
curl --request GET \ --url https://api.zilodata.com/api/v1/tiktok/video/{videoId}/comments \ --header 'Authorization: Bearer <token>'
{ "comments": [ { "id": "<string>", "text": "This is amazing!", "author": "commenter123", "likeCount": 150, "replyCount": 5, "createdAt": "2023-11-07T05:31:56Z", "replies": "<array>" } ], "cursor": "<string>" }
Retrieve comments for a specific video
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
newest
oldest
most_liked
Successful response
Show child attributes
"This is amazing!"
"commenter123"
150
5
Was this page helpful?