Client Show Api
Endpoints for retrieving information about one or more shows and their episodes from the Spotify catalog.
Functions
Link copied to clipboard
Get Spotify catalog information for a single show identified by its unique Spotify ID. The Market associated with the user account will be used.
Get Spotify catalog information for a single show identified by its unique Spotify ID.
Link copied to clipboard
suspend fun getShowEpisodes(id: String, limit: Int? = null, offset: Int? = null): PagingObject<SimpleEpisode>
Get Spotify catalog information about an show’s episodes. The Market associated with the user account will be used.
suspend fun getShowEpisodes(id: String, limit: Int? = null, offset: Int? = null, market: Market): PagingObject<SimpleEpisode>
Get Spotify catalog information about an show’s episodes.
Link copied to clipboard
Get Spotify catalog information for multiple shows based on their Spotify IDs. The Market associated with the user account will be used.
Get Spotify catalog information for multiple shows based on their Spotify IDs.