Get Followed Artists
me.following.bulk_retrieve(FollowingBulkRetrieveParams**kwargs) -> FollowingBulkRetrieveResponse
GET/me/following
Get the current user's followed artists.
Parameters
Returns
Get Followed Artists
import os
from spotted import Spotted
client = Spotted(
access_token=os.environ.get("SPOTIFY_ACCESS_TOKEN"), # This is the default and can be omitted
)
response = client.me.following.bulk_retrieve(
type="artist",
)
print(response.artists){
"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
}
}