Skip to content
DocumentationAPI Reference

Unfollow Playlist

playlists.followers.unfollow(strplaylist_id)
DELETE/playlists/{playlist_id}/followers

Remove the current user as a follower of a playlist.

ParametersExpand Collapse
playlist_id: str

The Spotify ID of the playlist.

Unfollow 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
)
client.playlists.followers.unfollow(
    "3cEYpjA9oz9GiPac4AsH4n",
)
Returns Examples