InsightSocial API
TikTok

Playlist › Videos

GET
/v1/tiktok/playlist/videos

Returns the videos inside one of a creator's profile playlists, in playlist order, each with engagement counts, caption, author, and a playable URL.

Use it with a playlist id from profile/playlists. Send the cursor back unchanged, because it is the platform's item index and not a count of the rows you hold.

20 credits per call.

Re-running the exact same call within 6h is free.

Paginates by cursor — see Pagination.

x-api-key<token>

Your key from the dashboard. It starts with isk_.

In: header

Query Parameters

playlist_id*string

Playlist id from /v1/tiktok/profile/playlists (post.id on that response).

handle?string

TikTok username of the playlist owner, without the @ symbol. Provide at least one of: handle, user_id.

user_id?string

TikTok numeric user ID of the playlist owner. Use this for faster responses. Provide at least one of: handle, user_id.

cursor?string

Cursor from the previous response to fetch the next page of videos.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/tiktok/playlist/videos?playlist_id=string"
{  "success": true,  "platform": "instagram",  "endpoint": "/v1/instagram/profile/posts",  "data": {    "items": [      "…"    ],    "dropped": 0  },  "pagination": {    "next_cursor": "is2.eyJwIjoyfQ",    "has_more": true,    "page_size": 12  },  "credits_used": 20,  "credits_remaining": 9980,  "request_id": "req_1a2b3c4d5e6f",  "cached": false,  "idempotent_replay": false,  "charge_reason": "miss",  "free_call": false}