Parameters
The TikTok username (without @). Either handle or user_id is required.
The TikTok user ID. Either handle or user_id is required.
Maximum number of results to return (default: 10)
Response
Whether the request was successful
Show User videos properties
Array of video objects from the user’s profile
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"
}
}