get Followed Artists
suspend fun getFollowedArtists(limit: Int? = api.spotifyApiOptions.defaultLimit, after: String? = null): CursorBasedPagingObject<Artist>(source)
Get the current user’s followed artists.
Requires the SpotifyScope.UserFollowRead scope
Return
CursorBasedPagingObject (Information about them with full Artist objects
Parameters
limit
The maximum number of items to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.
after
The last artist ID retrieved from the previous request.