Skip to content
DocumentationAPI Reference

Check if Current User Follows Playlist

IReadOnlyList<Boolean> Playlists.Followers.Check(FollowerCheckParamsparameters, CancellationTokencancellationToken = default)
GET/playlists/{playlist_id}/followers/contains

Check to see if the current user is following a specified playlist.

ParametersExpand Collapse
FollowerCheckParams parameters
required string playlistID

The Spotify ID of the playlist.

string ids

Deprecated A single item list containing current user's Spotify Username. Maximum: 1 id.

Check if Current User Follows Playlist

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

var response = await client.Playlists.Followers.Check(parameters);

Console.WriteLine(response);
[
  true
]
Returns Examples
[
  true
]