Check User's Saved Shows
me.shows.check(ShowCheckParams**kwargs) -> ShowCheckResponse
GET/me/shows/contains
Check if one or more shows is already saved in the current Spotify user's library.
Parameters
Returns
List[bool]
Check 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
)
response = client.me.shows.check(
ids="5CfCWKI5pZ28U0uOzXkDHe,5as3aKmN2k11yfDDDSrvaZ",
)
print(response)[
false,
true
]Returns Examples
[
false,
true
]