ClientShowApi

Endpoints for retrieving information about one or more shows and their episodes from the Spotify catalog.

Api Reference

Constructors

Link copied to clipboard
constructor(api: GenericSpotifyApi)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
suspend fun getShow(id: String): Show?

Get Spotify catalog information for a single show identified by its unique Spotify ID. The Market associated with the user account will be used.

suspend fun getShow(id: String, market: Market): Show?

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
suspend fun getShows(vararg ids: String): List<SimpleShow?>

Get Spotify catalog information for multiple shows based on their Spotify IDs. The Market associated with the user account will be used.

suspend fun getShows(vararg ids: String, market: Market): List<SimpleShow?>

Get Spotify catalog information for multiple shows based on their Spotify IDs.