---
title: "Get Current User's Playlists"
method: GET
path: "/me/playlists"
tags: ["Playlists", "Library"]
---

# Get Current User's Playlists

`GET /me/playlists`

Get a list of the playlists owned or followed by the current Spotify
user.

## Query parameters

- `limit` integer — The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.
- `offset` integer — 'The index of the first playlist to return. Default: 0 (the first object). Maximum offset: 100.000\. Use with `limit` to get the next set of playlists.'

## Response `200`

A paged set of playlists

- PagingPlaylistObject
  - `href` string, required — A link to the Web API endpoint returning the full result of the request
  - `limit` integer, required — The maximum number of items in the response (as set in the query or by default).
  - `next` string, nullable, required — URL to the next page of items. ( `null` if none)
  - `offset` integer, required — The offset of the items returned (as set in the query or by default)
  - `previous` string, nullable, required — URL to the previous page of items. ( `null` if none)
  - `total` integer, required — The total number of items available to return.
  - `items` SimplifiedPlaylistObject[], required
    - `collaborative` boolean — `true` if the owner allows other users to modify the playlist.
    - `description` string — The playlist description. _Only returned for modified, verified playlists, otherwise_ `null`.
    - `external_urls` ExternalUrlObject
      - `spotify` string — The [Spotify URL](/documentation/web-api/concepts/spotify-uris-ids) for the object.
    - `href` string — A link to the Web API endpoint providing full details of the playlist.
    - `id` string — The [Spotify ID](/documentation/web-api/concepts/spotify-uris-ids) for the playlist.
    - `images` ImageObject[] — 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](/documentation/web-api/concepts/playlists). _**Note**: If returned, the source URL for the image (`url`) is temporary and will expire in less than a day._
      - `url` string, required — The source URL of the image.
      - `height` integer, nullable, required — The image height in pixels.
      - `width` integer, nullable, required — The image width in pixels.
    - `name` string — The name of the playlist.
    - `owner` PlaylistOwnerObject
      - `external_urls` ExternalUrlObject
        - `spotify` string — The [Spotify URL](/documentation/web-api/concepts/spotify-uris-ids) for the object.
      - `href` string — A link to the Web API endpoint for this user.
      - `id` string — The [Spotify user ID](/documentation/web-api/concepts/spotify-uris-ids) for this user.
      - `type` 'user' — The object type.
      - `uri` string — The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for this user.
      - `display_name` string, nullable — The name displayed on the user's profile. `null` if not available.
    - `public` boolean — The playlist's public/private status (if it is added to the user's profile): `true` the playlist is public, `false` the playlist is private, `null` the playlist status is not relevant. For more about public/private status, see [Working with Playlists](/documentation/web-api/concepts/playlists)
    - `snapshot_id` string — The version identifier for the current playlist. Can be supplied in other requests to target a specific playlist version
    - `items` PlaylistTracksRefObject
      - `href` string — A link to the Web API endpoint where full details of the playlist's tracks can be retrieved.
      - `total` integer — Number of tracks in the playlist.
    - `tracks` PlaylistTracksRefObject
      - `href` string — A link to the Web API endpoint where full details of the playlist's tracks can be retrieved.
      - `total` integer — Number of tracks in the playlist.
    - `type` string — The object type: "playlist"
    - `uri` string — The [Spotify URI](/documentation/web-api/concepts/spotify-uris-ids) for the playlist.

## Other responses

- `401` — Bad or expired token. This can happen if the user revoked a token or the access token has expired. You should re-authenticate the user.
- `403` — Bad OAuth request (wrong consumer key, bad nonce, expired timestamp...). Unfortunately, re-authenticating the user won't help here.
- `429` — The app has exceeded its rate limits.

---

[API](https://skmtc.dev/spotify/apis/spotify-web-api.md) · [All operations](https://skmtc.dev/spotify/apis/spotify-web-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/spotify/spotify-web-api/revisions/2d888d731358/schema)
