Skip to content
Announcement:We are updating the criteria to be granted extended access to the Web API.
Please note that starting May 15, 2025 we’re introducing some changes to the way we provide Web API extended quota mode access. For more information, read here.
Web APIReferences / Playlists / Get Playlist Cover Image

Get Playlist Cover Image

Get the current image associated with a specific playlist.

Important policy notes

Request

  • playlist_id
    string
    Required

    The Spotify ID of the playlist.

    Example: 3cEYpjA9oz9GiPac4AsH4n

Response

A set of images

  • url
    string
    Required

    The source URL of the image.

    Example: "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228"
  • height
    integer
    Required
    Nullable

    The image height in pixels.

    Example: 300
  • width
    integer
    Required
    Nullable

    The image width in pixels.

    Example: 300
endpointhttps://api.spotify.com/v1/playlists/{playlist_id}/imagesplaylist_id

Response sample

[  {    "url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228",    "height": 300,    "width": 300  }]