Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
tiktok
/
search
/
top
TikTok Search Top Results
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/tiktok/search/top \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "items": [
      {}
    ]
  },
  "meta": {}
}

Parameters

query
string
required
The search query to find top 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/top?query=funny&limit=10" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "items": [
      {
        "id": "7528150371680767263",
        "desc": "Last two brain cells at 3 am #dance #trend #fun",
        "content_type": "video",
        "create_time": "2025-07-17T20:28:28.000Z",
        "desc_language": "en",
        "region": "US",
        "is_top": 0,
        "statistics": {
          "aweme_id": "7528150371680767263",
          "collect_count": 101,
          "comment_count": 83,
          "digg_count": 1895,
          "download_count": 3,
          "play_count": 50000
        }
      }
    ]
  },
  "meta": {
    "platform": "tiktok",
    "endpoint": "search/top",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}