curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/playlists \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"totalCount": 5,
"items": [
{
"name": "Christmaster List",
"uri": "spotify:playlist:1F5xCcAHNm52LSjeEGEVzU",
"description": "Digging up some rare Christmas magic",
"images": [
{
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72cf5e4def5ba0d1603897dba01",
"width": null,
"height": null
}
]
}
]
}
}Get playlists created by or associated with the artist
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/playlists \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"totalCount": 5,
"items": [
{
"name": "Christmaster List",
"uri": "spotify:playlist:1F5xCcAHNm52LSjeEGEVzU",
"description": "Digging up some rare Christmas magic",
"images": [
{
"url": "https://image-cdn-ak.spotifycdn.com/image/ab67706c0000d72cf5e4def5ba0d1603897dba01",
"width": null,
"height": null
}
]
}
]
}
}API Key
Spotify artist URI to get artist playlists
^spotify:artist:[a-zA-Z0-9]+$"spotify:artist:4GLJPBj5Cdr9AgLKvLWM4n"
Was this page helpful?