# TikTok Playlist Videos API (https://www.socialcrawl.dev/platforms/tiktok/playlist-videos) > Returns the videos inside one of a creator's profile playlists, in playlist order, ten per page. Each video carries the full set of engagement counts, the caption, the author, and a playable URL. Get the `playlist_id` from `/v1/tiktok/profile/playlists`. Page with `cursor`: the value the previous response returned must be sent back unchanged, because it is the upstream's own item index and is not always the number of rows you have already received. TL;DR: `GET /v1/tiktok/playlist/videos` costs 1 credit per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `playlist_id` | yes | Playlist id from /v1/tiktok/profile/playlists (`post.id` on that response). | | `handle` | no | TikTok username of the playlist owner, without the @ symbol. | | `user_id` | no | TikTok numeric user ID of the playlist owner. Use this for faster responses. | | `cursor` | no | Cursor from the previous response to fetch the next page of videos. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/tiktok/playlist/videos?playlist_id=7229371484127382314" \ -H "x-api-key: sc_YOUR_API_KEY" ``` See the full TikTok API: https://www.socialcrawl.dev/platforms/tiktok ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing