getFeaturedPlaylists

abstract suspend fun getFeaturedPlaylists(locale: String = "en_US", limit: Int = 20, offset: Int = 0): SpotifyApiResponse<Playlists, ErrorBody>(source)

Get featured playlists API returns the featured playlists. This is a paginated API.

offset is the page you are requesting for. Initially it will be 0.

You will have to increment it for subsequent pages.

You can know if there are more pages from Playlists.isNext.

See the Spotify Doc.

Return

Playlists when success and ErrorBody when error.

Parameters

locale
limit
offset