get Followed Artists
suspend fun getFollowedArtists(limit: Int? = api.spotifyApiOptions.defaultLimit, after: String? = null): CursorBasedPagingObject<Artist>
Content copied to clipboard
Get the current user’s followed artists.
Requires the SpotifyScope.USER_FOLLOW_READ 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.
Sources
(source)
Link copied to clipboard