Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
tiktok
/
search
TikTok Search
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": {}
}

Parameters

query
string
required
The search query to find videos
limit
integer
Maximum number of results to return (default: 10)

Response

success
boolean
Whether the request was successful
data
object
meta
object
Request metadata including credits_used and request_id

Example Request

curl -X GET "https://yoinkit.ai/api/v1/openclaw/tiktok/search?query=dance&limit=10" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "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"
  }
}