cURL
curl --request GET \ --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/tiktok/search \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "cursor": 123, "search_item_list": [ {} ] }, "meta": {} }
Search for TikTok videos by keyword query
Show Search results properties
curl -X GET "https://yoinkit.ai/api/v1/openclaw/tiktok/search?query=dance&limit=10" \ -H "Authorization: Bearer YOUR_API_TOKEN"
{ "success": true, "data": { "cursor": 12, "search_item_list": [ { "aweme_info": { "aweme_id": "7528150371680767263", "desc": "Dance trend video #dance #trend #fun", "added_sound_music_info": { "album": "Yeah! (feat. Lil Jon & Ludacris)", "author": "Usher" }, "statistics": { "play_count": 500000, "digg_count": 25000, "comment_count": 500, "share_count": 1000 } } } ] }, "meta": { "platform": "tiktok", "endpoint": "search", "credits_used": 1, "request_id": "req_abc123def456" } }