TikTok Video comments API
List the comments on a video by URL with cursor pagination: text, author, likes and reply count.
Provider network
Providers ranked by traffic
Try it
Make your first request
{
"found": true,
"data": {
"nextCursor": "20",
"comments": [
{
"id": "7517114944362499999",
"text": "GOAT 🐐",
"author": "footyfan",
"likes": 1240,
"replies": 12,
"createdAt": 1718200000
}
]
}
}interface TiktokVideoCommentsResponse {
data: {
comments: {
author: string;
createdUtc: number;
id: string;
likes: number;
replies: number;
text: string;
}[];
nextCursor: string | null;
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-12 · uptime and latency measured over 30dcurl -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"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "https://www.tiktok.com/@cristiano/video/7375000000000000000"Full TikTok video URL. |
| cursor | string | Pagination cursor from a previous response's nextCursor. |
| Response | ||
| found | boolean | true |
| data | object | |
| data.nextCursor | string | "20" |
| data.comments | array | |
| data.comments[].id | string | "7517114944362499999" |
| data.comments[].text | string | "GOAT 🐐" |
| data.comments[].author | string | "footyfan" |
| data.comments[].likes | number | 1240 |
| data.comments[].replies | number | 12 |
| data.comments[].createdAt | number | 1718200000 |
| Price | ||
| Price per request | USD | $0.0012 |
| Price /1k req | USD | $1.20 |
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 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 95.7% of TikTok video comments calls through AnyAPI succeeded, with a median response time of 2.2 seconds across 2,737 measured calls.