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.
Parameters
Returns
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
]