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