getFollowedArtists

suspend fun getFollowedArtists(limit: Int? = api.spotifyApiOptions.defaultLimit, after: String? = null): CursorBasedPagingObject<Artist>

Get the current user’s followed artists.

Requires the SpotifyScope.USER_FOLLOW_READ scope

Api Reference

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

common source
Link copied to clipboard