Skip to content
DocumentationAPI Reference

Remove User's Saved Shows

me.shows.remove(ShowRemoveParams**kwargs)
DELETE/me/shows

Delete one or more shows from current Spotify user's library.

ParametersExpand Collapse
ids: Optional[SequenceNotStr[str]]

A JSON array of the Spotify IDs.
A maximum of 50 items can be specified in one request. Note: if the ids parameter is present in the query string, any IDs listed here in the body will be ignored.

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

Remove User's Saved Shows

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.me.shows.remove()
Returns Examples