Crawlzodocs
API referenceTikTok

TikTok user playlists

Every playlist a creator has published.

The example response below is real output from this endpoint, not an illustration. Long lists and long strings are shortened to keep the page readable, and each place that happens is marked. This example took 1.6s.

POST
/v1/scrapers/tiktok-user-playlists-v4

Authorization

ApiKeyAuth
X-API-Key<token>

Your API key. Sent on every request.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/scrapers/tiktok-user-playlists-v4" \  -H "Content-Type: application/json" \  -d '{    "unique_id": "tiktok",    "cursor": "0",    "count": 30  }'
{  "request_id": "req_8f2c1d94e7b0",  "success": true,  "status": {    "code": "OK",    "message": "Scrape completed.",    "retryable": false  },  "data": {    "cursor": null,    "has_more": false,    "playlists": [      {        "creator_id": null,        "creator_name": null,        "creator_username": "tiktok",        "name": "Behind The Breakthrough",        "playlist_id": "7659874208872221471",        "playlist_link": "https://www.tiktok.com/@tiktok/playlist/behind-the-breakthrough-7659874208872221471",        "type": 1,        "video_count": null      },      {        "creator_id": null,        "creator_name": null,        "creator_username": "tiktok",        "name": "In The Mix",        "playlist_id": "7516638364301265695",        "playlist_link": "https://www.tiktok.com/@tiktok/playlist/in-the-mix-7516638364301265695",        "type": 1,        "video_count": null      },      "… 2 more items in the full response"    ],    "unique_id": "tiktok",    "user_id": null  },  "error": null,  "meta": {    "client_id": "client_abc123",    "scraper": "tiktok-user-playlists-v4",    "billable": true,    "duration_ms": 1023  }}