searchArtist

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

Search artist API searches for an artist 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 Artists.isNext.

See the Spotify Doc.

Return

Artists when success and ErrorBody when error.

Parameters

query
market
limit
offset