Skip to main content
GET
/
comment
/
{commentId}
Get Comment
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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

commentId
string
required

Response

200 - application/json

Successful response

id
string
text
string
Example:

"This is amazing!"

author
string
Example:

"commenter123"

likeCount
integer
Example:

150

replyCount
integer
Example:

5

createdAt
string<date-time>
replies
array