Get user videos — TikTok API
Returns a paginated list of videos from a user's profile. Supports sorting by newest, popular, or oldest. Maximum 35 videos per page.
GET
/v1/tiktok/users/{username}/videos1 credit per requestExample response200OK
Make the request.
One authenticated GET to /v1/tiktok/users/{username}/videos. Authentication and error conventions stay consistent across endpoints. This page shows the path, parameters, response shape, limits, and credit rule for this operation.
Built for
- Content performance analysis and engagement benchmarking
- Creator content audits for influencer marketing campaigns
- Competitor video strategy research and gap analysis
const response = await fetch("https://api.konbiniapi.com/v1/tiktok/users/khaby.lame/videos", {
headers: { "Authorization": "Bearer YOUR_API_KEY" }
});
const data = await response.json();
Parameters4
- usernamerequiredIn · PathType · stringTikTok username (with or without @ symbol)
- countIn · QueryType · integerNumber of videos to fetch (maximum: 35)1–35default 35
- cursorIn · QueryType · stringPagination cursordefault 0
- orderIn · QueryType · stringSort order: newest (default), popular, or oldestnewest | popular | oldestdefault newest
What you will probably call next.
The TikTok endpoints around this one — the same object at a different depth, or the same kind of read.
Try it on your own data.
Get a free API key and make this request in minutes. Failed and timed-out requests are automatically refunded.