cURL
curl --request GET \ --url https://api.zilodata.com/api/v1/tiktok/user/posts \ --header 'Authorization: Bearer <token>'
{ "videos": [ { "id": "7123456789012345678", "description": "Check out this amazing dance! #dance #viral", "author": "tiktok_user", "likeCount": 50000, "commentCount": 1200, "shareCount": 5000, "viewCount": 1000000, "duration": 30, "createdAt": "2025-01-15T10:30:00.000Z", "videoUrl": "https://www.tiktok.com/@tiktok_user/video/7123456789012345678", "music": { "title": "<string>", "author": "<string>" } } ], "cursor": "<string>", "hasMore": true }
Retrieve posts/videos from a TikTok user
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
x <= 100
Pagination cursor
Successful response
Show child attributes
"7123456789012345678"
"Check out this amazing dance! #dance #viral"
"tiktok_user"
50000
1200
5000
1000000
Video duration in seconds
30
"2025-01-15T10:30:00.000Z"
"https://www.tiktok.com/@tiktok_user/video/7123456789012345678"
Was this page helpful?