Get User's Followed Artists
Developing
GET
/me/following
category-follow
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.spotify.com/v1/me/following?type=' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
"artists": {
"cursors": {
"after": "string"
},
"href": "string",
"items": [
{
"external_urls": {
"spotify": "string"
},
"followers": {
"href": "string",
"total": 0
},
"genres": [
"string"
],
"href": "string",
"id": "string",
"images": [
{
"height": 0,
"url": "string",
"width": 0
}
],
"name": "string",
"popularity": 0,
"type": "string",
"uri": "string"
}
],
"limit": 0,
"next": "string",
"total": 0
}
}
Request
Query Params
type
string
required
artist
is supported.after
string
optional
limit
integer
optional
Header Params
Authorization
string
required
user-follow-modify
scope.Responses
Modified at 2022-09-12 10:04:50