Get video comments — TikTok API
Returns a paginated list of top-level comments on a video. Maximum 50 per page. Use the replies endpoint to fetch threaded replies.
GET
/v1/tiktok/videos/{videoId}/comments1 credit per requestExample response200OK
Make the request.
One authenticated GET to /v1/tiktok/videos/{videoId}/comments. Authentication and error conventions stay consistent across endpoints. This page shows the path, parameters, response shape, limits, and credit rule for this operation.
Built for
- Comment sentiment analysis and brand safety auditing
- Audience feedback and UGC mining for product research
- Moderation queue automation for community management
const response = await fetch("https://api.konbiniapi.com/v1/tiktok/videos/7403212/comments", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
Parameters3
- videoIdrequiredIn · PathType · stringTikTok video ID
- countIn · QueryType · integerNumber of comments to fetch (maximum: 50)1–50default 20
- cursorIn · QueryType · stringPagination cursordefault 0
What you will probably call next.
The TikTok endpoints around this one — the same object at a different depth, or the same kind of read.
Try it on your own data.
Get a free API key and make this request in minutes. Failed and timed-out requests are automatically refunded.