POST
https://api.zocialmine.com
/
v1
/
tiktok
/
comments
curl -X POST https://api.zocialmine.com/v1/tiktok/comments \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.tiktok.com/@username/video/7513452345255103751",
    "cursor": "0"
  }'
{
  "status": "success",
  "data": {
    "comments": [
      {
        "cid": "7513500000000000000",
        "text": "Great video!",
        "createTime": 1700001000,
        "diggCount": 42,
        "replyCount": 3,
        "user": {
          "uid": "6943345678901234567",
          "uniqueId": "commenter",
          "nickname": "Commenter Name",
          "avatarThumb": "https://p16-sign.tiktokcdn.com/..."
        }
      }
    ],
    "hasMore": true,
    "cursor": "20",
    "total": 3200
  }
}
Fetches comments from a specific TikTok video with cursor-based pagination. Cost: 1 credit per request.

Request

url
string
required
The TikTok video URL.Example: https://www.tiktok.com/@username/video/7513452345255103751
awemeId
string
The video ID. Auto-extracted from the URL if not provided.
cursor
string
default:"0"
Pagination cursor. Use "0" for the first page, then pass the returned cursor for subsequent pages.
region
string
Proxy region as a 2-letter country code (e.g., us, th, jp).

Response

status
string
"success" on successful request.
data
object
curl -X POST https://api.zocialmine.com/v1/tiktok/comments \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.tiktok.com/@username/video/7513452345255103751",
    "cursor": "0"
  }'
{
  "status": "success",
  "data": {
    "comments": [
      {
        "cid": "7513500000000000000",
        "text": "Great video!",
        "createTime": 1700001000,
        "diggCount": 42,
        "replyCount": 3,
        "user": {
          "uid": "6943345678901234567",
          "uniqueId": "commenter",
          "nickname": "Commenter Name",
          "avatarThumb": "https://p16-sign.tiktokcdn.com/..."
        }
      }
    ],
    "hasMore": true,
    "cursor": "20",
    "total": 3200
  }
}