Skip to main content
GET
/
api
/
v1
/
openclaw
/
tiktok
/
search
/
top
Top Search
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/tiktok/search/top \
  --header 'Authorization: Bearer <token>'

Parameters

query
string
required
Keyword to search for (e.g., funny)
publish_time
string
Time Frame TikTok was posted (e.g., all-time)

Example Request

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

Example Response

{
  "success": true,
  "data": {
    "aweme_list": [
      {
        "aweme_id": "...",
        "desc": "...",
        "statistics": {
          "digg_count": 123,
          "comment_count": 45,
          "play_count": 67890
        }
      }
    ]
  },
  "meta": {
    "platform": "tiktok",
    "endpoint": "search-top",
    "request_id": "req_abc123"
  }
}
Response data is returned directly from the Yoinkit API.