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

Parameters

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/popular?limit=10" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "credits_remaining": 100,
    "pagination": {
      "has_more": true,
      "limit": 10,
      "page": 1,
      "total_count": 500
    },
    "videos": [
      {
        "country_code": "US",
        "cover": "https://p16-sign-va.tiktokcdn.com/tos-maliva-p-0068c799-us/cover.jpg",
        "duration": 30
      }
    ]
  },
  "meta": {
    "platform": "tiktok",
    "endpoint": "popular",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}