curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/appears-on \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"totalCount": 23,
"items": [
{
"releases": {
"items": [
{
"id": "1typPCwqyXMfFpvDZAyKew",
"name": "Fighting Demons (Deluxe)",
"uri": "spotify:album:1typPCwqyXMfFpvDZAyKew",
"artists": {
"items": [
{
"name": "Juice WRLD",
"uri": "spotify:artist:4MCBfE4596Uoi2O4DtmEMz"
}
]
},
"coverArts": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02ec10f247b100da1ce0d80b6d",
"width": 300,
"height": 300
}
]
}
],
"totalCount": 2
}
}
]
}
}Get albums and playlists where the artist appears as a featured artist
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/appears-on \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"totalCount": 23,
"items": [
{
"releases": {
"items": [
{
"id": "1typPCwqyXMfFpvDZAyKew",
"name": "Fighting Demons (Deluxe)",
"uri": "spotify:album:1typPCwqyXMfFpvDZAyKew",
"artists": {
"items": [
{
"name": "Juice WRLD",
"uri": "spotify:artist:4MCBfE4596Uoi2O4DtmEMz"
}
]
},
"coverArts": [
{
"url": "https://i.scdn.co/image/ab67616d00001e02ec10f247b100da1ce0d80b6d",
"width": 300,
"height": 300
}
]
}
],
"totalCount": 2
}
}
]
}
}API Key
Spotify artist URI to get the appears on albums/playlists
^spotify:artist:[a-zA-Z0-9]+$"spotify:artist:3Nrfpe0tUJi4K4DXYWgMUX"
Was this page helpful?