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

Parameters

handle
string
The TikTok username (without @). Either handle or user_id is required.
user_id
string
The TikTok user ID. Either handle or user_id is required.
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/user/videos?handle=stoolpresidente&limit=10" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "aweme_list": [
      {
        "aweme_id": "7499229683859426602",
        "desc": "Pizza review time! #barstool #pizza",
        "author": {
          "unique_id": "stoolpresidente",
          "nickname": "Dave Portnoy"
        },
        "added_sound_music_info": {
          "album": "",
          "author": "Dave Portnoy",
          "audition_duration": 89
        },
        "statistics": {
          "play_count": 1000000,
          "digg_count": 50000,
          "comment_count": 800,
          "share_count": 2000
        }
      }
    ]
  },
  "meta": {
    "platform": "tiktok",
    "endpoint": "user/videos",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}