List My Playlists
list_playlistsFetch the current user's Spotify playlists page by page using limit and offset for complete library access.
Instructions
Get current user's playlists with pagination support.
Args:
limit: Max playlists to return per page (1-50, default 20)
offset: Number of playlists to skip for pagination (default 0)
Returns:
PlaylistList with 'items' (list of playlists) and pagination info ('total', 'limit', 'offset')
Note: For users with many playlists, use offset to paginate through results.
Example: offset=0 gets playlists 1-20, offset=20 gets playlists 21-40, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| next | No | ||
| items | Yes | ||
| limit | Yes | ||
| total | Yes | ||
| offset | Yes | ||
| previous | No |