Get Followed Artists
FollowingBulkRetrieveResponse Me.Following.BulkRetrieve(FollowingBulkRetrieveParams?parameters, CancellationTokencancellationToken = default)
GET/me/following
Get the current user's followed artists.
Parameters
Returns
Get Followed Artists
FollowingBulkRetrieveParams parameters = new()
{
Type = JsonSerializer.SerializeToElement("artist")
};
var response = await client.Me.Following.BulkRetrieve(parameters);
Console.WriteLine(response);{
"artists": {
"cursors": {
"after": "after",
"before": "before",
"published": true
},
"href": "href",
"items": [
{
"id": "id",
"external_urls": {
"published": true,
"spotify": "spotify"
},
"followers": {
"href": "href",
"published": true,
"total": 0
},
"genres": [
"Prog rock",
"Grunge"
],
"href": "href",
"images": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
"width": 300,
"published": true
}
],
"name": "name",
"popularity": 0,
"published": true,
"type": "artist",
"uri": "uri"
}
],
"limit": 0,
"next": "next",
"published": true,
"total": 0
}
}Returns Examples
{
"artists": {
"cursors": {
"after": "after",
"before": "before",
"published": true
},
"href": "href",
"items": [
{
"id": "id",
"external_urls": {
"published": true,
"spotify": "spotify"
},
"followers": {
"href": "href",
"published": true,
"total": 0
},
"genres": [
"Prog rock",
"Grunge"
],
"href": "href",
"images": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
"width": 300,
"published": true
}
],
"name": "name",
"popularity": 0,
"published": true,
"type": "artist",
"uri": "uri"
}
],
"limit": 0,
"next": "next",
"published": true,
"total": 0
}
}