Unofficial TikTok API — Collections

GET/api/v1/collections

List a user's TikTok collections (cursor-paginated).

ParameterDescription
usernamerequiredTikTok username, @handle, or profile URL.
cursoroptionalPage cursor. Omit (or 0) for the first page; pass the next_cursor from the previous response for the next.
formatoptionalOmit for raw objects (default). Use clean for a trimmed subset (id, name, video_count, cover).

Returns

username, next_cursor, has_more, count, and a collections array (raw TikTok collection objects, or trimmed with format=clean).

Example Request

https://dev.omar-thing.site/api/v1/collections?username=tiktok&cursor=0&format=clean&key=YOUR_API_KEY

Example Response

{
  "data": {
    "collections": [
      {
        "...": "more",
        "collection_id": "7394627756635573022",
        "cover": "https://p16-common-sign.tiktokcdn-eu.com/...jpeg",
        "name": "Summer of Sports",
        "video_count": 139
      }
    ],
    "count": 5,
    "has_more": false,
    "next_cursor": "",
    "username": "tiktok"
  },
  "status": "success"
}
Sends a live request using your API key above.

More Content endpoints