search Album
abstract suspend fun searchAlbum(query: String, market: String? = null, limit: Int = 20, offset: Int = 0): SpotifyApiResponse<Albums, ErrorBody>(source)
Search album API searches for a album 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 Albums.isNext.
See the Spotify Doc.
Return
Parameters
query
market
limit
offset