Shows Apis
class ShowsApis(client: HttpClient = SpotifyHttpClientFactory.create(), tokenProvider: TokenProvider) : BaseSpotifyApi
Show domain API for Spotify Web API.
Covers podcast show metadata, show episodes, and saved shows for the current user.
Functions
Link copied to clipboard
Checks whether shows are saved in the current user's Your Library.
Link copied to clipboard
Gets multiple Spotify shows by their IDs.
Link copied to clipboard
Gets a Spotify show by show ID.
Link copied to clipboard
suspend fun getShowEpisodes(id: String, market: CountryCode? = null, pagingOptions: PagingOptions = PagingOptions()): SpotifyResult<Paging<SimplifiedEpisodeObject>>
Gets episodes for a Spotify show.
Link copied to clipboard
suspend fun getUsersSavedShows(pagingOptions: PagingOptions = PagingOptions()): SpotifyResult<Paging<SavedShowObject>>
Gets the current user's saved shows from Your Library.
Link copied to clipboard
Removes shows from the current user's Your Library.
Link copied to clipboard
Saves shows to the current user's Your Library.