searchPlaylist

abstract suspend fun searchPlaylist(query: String, market: String? = null, limit: Int = 20, offset: Int = 0): SpotifyApiResponse<Playlists, ErrorBody>(source)

Search playlist API searches for a playlist from the given query. 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

query
market
limit
offset