Skip to content
DocumentationAPI Reference

Get Playlist Cover Image

IReadOnlyList<ImageObject> Playlists.Images.List(ImageListParamsparameters, CancellationTokencancellationToken = default)
GET/playlists/{playlist_id}/images

Get the current image associated with a specific playlist.

ParametersExpand Collapse
ImageListParams parameters
required string playlistID

The Spotify ID of the playlist.

Get Playlist Cover Image

ImageListParams parameters = new() { PlaylistID = "3cEYpjA9oz9GiPac4AsH4n" };

var imageObjects = await client.Playlists.Images.List(parameters);

Console.WriteLine(imageObjects);
[
  {
    "height": 300,
    "url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
    "width": 300,
    "published": true
  }
]
Returns Examples
[
  {
    "height": 300,
    "url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
    "width": 300,
    "published": true
  }
]