Skip to main content
GET
/
video
/
{videoId}
/
comments
Get TikTok Video Comments
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>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

videoId
string
required

Query Parameters

limit
integer
default:20
cursor
string
sort
enum<string>
default:newest
Available options:
newest,
oldest,
most_liked

Response

200 - application/json

Successful response

comments
object[]
cursor
string