Skip to content
DocumentationAPI Reference

Check if Current User Follows Playlist

playlists.followers.check(strplaylist_id, FollowerCheckParams**kwargs) -> FollowerCheckResponse
GET/playlists/{playlist_id}/followers/contains

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

ParametersExpand Collapse
playlist_id: str

The Spotify ID of the playlist.

ids: Optional[str]

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

ReturnsExpand Collapse
List[bool]

Check if Current User Follows Playlist

import os
from spotted import Spotted

client = Spotted(
    access_token=os.environ.get("SPOTIFY_ACCESS_TOKEN"),  # This is the default and can be omitted
)
response = client.playlists.followers.check(
    playlist_id="3cEYpjA9oz9GiPac4AsH4n",
)
print(response)
[
  true
]
Returns Examples
[
  true
]