Skip to content
DocumentationAPI Reference

Follow Playlist

playlists.followers.follow(strplaylist_id, FollowerFollowParams**kwargs)
PUT/playlists/{playlist_id}/followers

Add the current user as a follower of a playlist.

ParametersExpand Collapse
playlist_id: str

The Spotify ID of the playlist.

published: Optional[bool]

The playlist's public/private status (if it should be added to the user's profile or not): true the playlist will be public, false the playlist will be private, null the playlist status is not relevant. For more about public/private status, see Working with Playlists

Follow 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.follow(
    playlist_id="3cEYpjA9oz9GiPac4AsH4n",
)
Returns Examples