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

Parameters

country
string
required
Two-letter country code (e.g., US, GB, CA)

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/trending?country=US" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "aweme_list": [
      {
        "aweme_id": "7540000301621841183",
        "desc": "#hudsonvalley #fallgetaway #farm #upstateny #resort",
        "desc_language": "un",
        "region": "US",
        "statistics": {
          "aweme_id": "7540000301621841183",
          "comment_count": 646,
          "digg_count": 71423,
          "download_count": 130,
          "play_count": 1443873,
          "share_count": 8440,
          "collect_count": 21957
        }
      }
    ]
  },
  "meta": {
    "platform": "tiktok",
    "endpoint": "trending",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}