Web API •References / Users / Get Followed Artists
Get Followed Artists
Get the current user's followed artists.
Authorization scopes
Access your followers and who you are following.
Request
- typestringRequired
The ID type: currently only
artist
is supported.Allowed values:"artist"
Example:type=artist
- afterstring
The last artist ID retrieved from the previous request.
Example:after=0I2XqVXqHScXjHhk6AYYRe
- limitinteger
The maximum number of items to return. Default: 20. Minimum: 1. Maximum: 50.
Default:limit=20
Range:0
-50
Example:limit=10
Response
A paged set of artists
- Required
- hrefstring
A link to the Web API endpoint returning the full result of the request.
- limitinteger
The maximum number of items in the response (as set in the query or by default).
- nextstring
URL to the next page of items. (
null
if none) The cursors used to find the next set of items.
- afterstring
The cursor to use as key to find the next page of items.
- beforestring
The cursor to use as key to find the previous page of items.
- totalinteger
The total number of items available to return.
Response sample
{ "artists": { "href": "string", "limit": 0, "next": "string", "cursors": { "after": "string", "before": "string" }, "total": 0, "items": [ { "external_urls": { "spotify": "string" }, "followers": { "href": "string", "total": 0 }, "genres": ["Prog rock", "Grunge"], "href": "string", "id": "string", "images": [ { "url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228", "height": 300, "width": 300 } ], "name": "string", "popularity": 0, "type": "artist", "uri": "string" } ] }}