Live
get_video_comments
tiktok.comGets a relevance-sorted page of public TikTok comments from https://www.tiktok.com, including users, likes, replies, creator-liked labels, and the cursor for the next page.
Parameters3
Runs10
Updated10d ago
Operational10 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_video_comments?
Gets a relevance-sorted page of public TikTok comments from https://www.tiktok.com, including users, likes, replies, creator-liked labels, and the cursor for the next page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass video_url_or_id, cursor, count and get the result back without maintaining a scraper.
Response
{
"count": 0,
"total": 0,
"cursor": 0,
"comments": [
{}
],
"has_more": true,
"video_id": "<string>",
"sort_order": "<string>",
"alias_comment_deleted": true,
"has_filtered_comments": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/d1f16f5f-14d1-44ec-9c3f-cf1e766e2fb9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d1f16f5f-14d1-44ec-9c3f-cf1e766e2fb9",
"variables": {
"video_url_or_id": "https://www.tiktok.com/@lilireinhart/video/7517409255914212638",
"cursor": 0,
"count": 20
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="d1f16f5f-14d1-44ec-9c3f-cf1e766e2fb9") — the "get_video_comments" function, which gets a relevance-sorted page of public TikTok comments from https://www.tiktok.com, including users, likes, replies, creator-liked labels, and the cursor for the next page.. It takes video_url_or_id (str), cursor (int), count (int). Return the result as structured JSON.