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

Parameters

hashtag
string
required
The hashtag to search for (without the # symbol)
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/hashtag?hashtag=viral&limit=10" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "aweme_list": [
      {
        "aweme_id": "7528150371680767263",
        "desc": "#viral hashtag video content",
        "add_yours_info": {
          "video_source": 1
        },
        "added_sound_music_info": {
          "album": "M to the B",
          "author": "Artist Name"
        },
        "statistics": {
          "play_count": 500000,
          "digg_count": 25000
        }
      }
    ]
  },
  "meta": {
    "platform": "tiktok",
    "endpoint": "search/hashtag",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}