tiktok.comment_replies
ActiveTool of Vee3
declared in 1.27.1
List replies to a TikTok comment. Requires video_id and comment_id. Pass cursor from a previous response to fetch the next page. Cost = 2 tokens.
Parameters schema
{
"type": "object",
"title": "get_tiktok_comment_repliesArguments",
"required": [
"video_id",
"comment_id"
],
"properties": {
"count": {
"anyOf": [
{
"type": "integer",
"maximum": 40,
"minimum": 1
},
{
"type": "null"
}
],
"title": "Count",
"default": null,
"description": "Number of replies to return (max 40)."
},
"cursor": {
"anyOf": [
{
"type": "string",
"maxLength": 4096
},
{
"type": "null"
}
],
"title": "Cursor",
"default": null,
"description": "Pagination cursor from a previous response."
},
"video_id": {
"type": "string",
"title": "Video Id",
"maxLength": 32,
"description": "TikTok video id."
},
"comment_id": {
"type": "string",
"title": "Comment Id",
"maxLength": 32,
"description": "TikTok comment id."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries