tiktok.search_videos
ActiveTool of Vee3
declared in 1.27.1
Search TikTok videos by keyword. Requires query. Pass cursor from a previous response to fetch the next page. Cost = 5 tokens.
Parameters schema
{
"type": "object",
"title": "search_tiktok_videosArguments",
"required": [
"query"
],
"properties": {
"count": {
"anyOf": [
{
"type": "integer",
"maximum": 30,
"minimum": 1
},
{
"type": "null"
}
],
"title": "Count",
"default": null,
"description": "Number of items to return (max 30)."
},
"query": {
"type": "string",
"title": "Query",
"maxLength": 512,
"description": "Search keywords."
},
"cursor": {
"anyOf": [
{
"type": "string",
"maxLength": 4096
},
{
"type": "null"
}
],
"title": "Cursor",
"default": null,
"description": "Pagination cursor from a previous response."
},
"region": {
"anyOf": [
{
"type": "string",
"maxLength": 8
},
{
"type": "null"
}
],
"title": "Region",
"default": null,
"description": "Region code (for example us, jp, kr)."
},
"sort_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sort By",
"default": "relevance",
"description": "Sort order: relevance, like_count, or date_posted."
},
"publish_time": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Publish Time",
"default": null,
"description": "Publish time filter: 0, 1, 7, 30, 90, or 180."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries