Unofficial TikTok API — Collection Videos
GET/api/v1/collection_videos
List the videos inside a TikTok collection (one raw page per call, cursor-paginated). Pass a collection_id from /collections.
| Parameter | Description | |
|---|---|---|
collection_id | required | Collection id (from /collections). |
cursor | optional | Page cursor. Omit (or 0) for the first page; pass the next_cursor from the previous response for the next. |
format | optional | Omit for full raw objects (default). Use clean for a trimmed subset (id, desc, urls, music, stats). |
Returns
collection_id, next_cursor, has_more, count, and a videos array of the raw TikTok video objects in the collection.
Example Request
https://dev.omar-thing.site/api/v1/collection_videos?collection_id=7394627756635573022&cursor=0&format=clean&key=YOUR_API_KEY
Example Response
{
"data": {
"collection_id": "7394627756635573022",
"count": 30,
"has_more": true,
"next_cursor": "30",
"videos": [
{
"...": "more",
"createTime": 1722860874,
"desc": "WORLD CHAMP 🔥",
"id": "7399631056783035690",
"video": {
"...": "raw video fields"
}
}
]
},
"status": "success"
}Sends a live request using your API key above.
More Content endpoints
- Unofficial TikTok Posts API — List the videos a user has posted (one raw page per call, cursor-paginated).
- Unofficial TikTok Comments API — Fetch the comments on a video (id or URL).
- Unofficial TikTok Comment Replies API — All replies under one comment (one raw page per call, cursor-paginated). Get
comment_idfrom /comments. - Unofficial TikTok Stories API — Fetch a user's active stories.
- Unofficial TikTok Reposts API — List the videos a user has reposted (one raw page per call, cursor-paginated).
- Unofficial TikTok Story Highlights API — Get a user's highlights — all collections and the stories inside each.
- Unofficial TikTok Music API — Sound/music details + the videos that use it (one raw page per call, cursor-paginated). Pass a music id.
- Unofficial TikTok API — Mix (creator playlist) details + the videos in it (one raw page per call, cursor-paginated). Pass a TikTok mix id.