Get Current User's Playlists
Get a list of the playlists owned or followed by the current Spotify user.
- Access your private playlists. 
Request
- limitintegerThe maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50. Default:limit=20Range:0-50Example:limit=10
- offsetinteger'The index of the first playlist to return. Default: 0 (the first object). Maximum offset: 100.000. Use with limitto get the next set of playlists.'Default:offset=0Example:offset=5
Response
A paged set of playlists
- hrefstringRequiredA link to the Web API endpoint returning the full result of the request Example:"https://api.spotify.com/v1/me/shows?offset=0&limit=20"
- limitintegerRequiredThe maximum number of items in the response (as set in the query or by default). Example:20
- nextstringRequiredNullableURL to the next page of items. ( nullif none)Example:"https://api.spotify.com/v1/me/shows?offset=1&limit=1"
- offsetintegerRequiredThe offset of the items returned (as set in the query or by default) Example:0
- previousstringRequiredNullableURL to the previous page of items. ( nullif none)Example:"https://api.spotify.com/v1/me/shows?offset=1&limit=1"
- totalintegerRequiredThe total number of items available to return. Example:4
- Required- collaborativebooleantrueif the owner allows other users to modify the playlist.
- descriptionstringThe playlist description. Only returned for modified, verified playlists, otherwise null.
- Known external URLs for this playlist. - spotifystringThe Spotify URL for the object. 
 
- hrefstringA link to the Web API endpoint providing full details of the playlist. 
- idstringThe Spotify ID for the playlist. 
- Images for the playlist. The array may be empty or contain up to three images. The images are returned by size in descending order. See Working with Playlists. Note: If returned, the source URL for the image ( - url) is temporary and will expire in less than a day.
- namestringThe name of the playlist. 
- The user who owns the playlist - Known public external URLs for this user. - spotifystringThe Spotify URL for the object. 
 
- hrefstringA link to the Web API endpoint for this user. 
- idstringThe Spotify user ID for this user. 
- typestringThe object type. Allowed values:"user"
- uristringThe Spotify URI for this user. 
- display_namestringNullableThe name displayed on the user's profile. nullif not available.
 
- publicbooleanThe playlist's public/private status (if it is added to the user's profile): truethe playlist is public,falsethe playlist is private,nullthe playlist status is not relevant. For more about public/private status, see Working with Playlists
- snapshot_idstringThe version identifier for the current playlist. Can be supplied in other requests to target a specific playlist version 
- A collection containing a link ( - href) to the Web API endpoint where full details of the playlist's tracks can be retrieved, along with the- totalnumber of tracks in the playlist. Note, a track object may be- null. This can happen if a track is no longer available.- hrefstringA link to the Web API endpoint where full details of the playlist's tracks can be retrieved. 
- totalintegerNumber of tracks in the playlist. 
 
- typestringThe object type: "playlist" 
- uristringThe Spotify URI for the playlist. 
 
Response sample
{ "href": "https://api.spotify.com/v1/me/shows?offset=0&limit=20", "limit": 20, "next": "https://api.spotify.com/v1/me/shows?offset=1&limit=1", "offset": 0, "previous": "https://api.spotify.com/v1/me/shows?offset=1&limit=1", "total": 4, "items": [ { "collaborative": false, "description": "string", "external_urls": { "spotify": "string" }, "href": "string", "id": "string", "images": [ { "url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228", "height": 300, "width": 300 } ], "name": "string", "owner": { "external_urls": { "spotify": "string" }, "href": "string", "id": "string", "type": "user", "uri": "string", "display_name": "string" }, "public": false, "snapshot_id": "string", "tracks": { "href": "string", "total": 0 }, "type": "string", "uri": "string" } ]}