TikTok API

TikTok Video comments API

List the comments on a video by URL with cursor pagination: text, author, likes and reply count.

POST/v1/run/tiktok.video_comments
Uptime
99.47%
30d · 3,191 calls
Requests
3,191
30d · weekly, last 12 wks
Response
2.3s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "found": true,
  "data": {
    "nextCursor": "20",
    "comments": [
      {
        "id": "7517114944362499999",
        "text": "GOAT 🐐",
        "author": "footyfan",
        "likes": 1240,
        "replies": 12,
        "createdAt": 1718200000
      }
    ]
  }
}
Response interface
interface TiktokVideoCommentsResponse {
  data: {
    comments: {
      author: string;
      authorImage?: string;
      authorName?: string;
      createdUtc: number;
      id: string;
      likes: number;
      replies: number;
      text: string;
      videoId?: string;
    }[];
    nextCursor: string | null;
  } | null;
  found: boolean;
  reason?: "not_found";
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-20 · uptime and latency measured over 30d
POST /v1/run/tiktok.video_comments
curl -X POST https://api.getanyapi.com/v1/run/tiktok.video_comments \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.tiktok.com/@cristiano/video/7375000000000000000"}'
FieldTypeExample value
Request body
urlstring"https://www.tiktok.com/@cristiano/video/7375000000000000000"Full TikTok video URL.
cursorstringPagination cursor from a previous response's nextCursor.
Response
foundbooleantrue
dataobject
data.nextCursorstring"20"
data.commentsarray
data.comments[].idstring"7517114944362499999"
data.comments[].textstring"GOAT 🐐"
data.comments[].authorstring"footyfan"
data.comments[].likesnumber1240
data.comments[].repliesnumber12
data.comments[].createdAtnumber1718200000
Price
Price per requestUSD$0.0007
Price /1k reqUSD$0.70

FAQ

About the TikTok Video comments API

The AnyAPI TikTok Video comments API returns TikTok video comments data as normalized JSON from one POST call to /v1/run/tiktok.video_comments. List the comments on a video by URL with cursor pagination: text, author, likes and reply count. AnyAPI routes each request across 5 sources and falls back automatically when one fails. It costs from $0.70 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 99.5% of TikTok video comments calls through AnyAPI succeeded, with a median response time of 2.3 seconds across 3,191 measured calls.

It costs from $0.70 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

List the comments on a video by URL with cursor pagination: text, author, likes and reply count. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 99.5% of TikTok video comments calls through AnyAPI succeeded, with a median response time of 2.3 seconds across 3,191 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.