curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/discography-overview \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"id": "1yxSLGMDHlW21z4YXirZDS",
"name": "Black Eyed Peas",
"uri": "spotify:artist:1yxSLGMDHlW21z4YXirZDS",
"discography": {
"albums": {
"totalCount": 16
},
"singles": {
"totalCount": 61
},
"compilations": {
"totalCount": 2
},
"all": {
"totalCount": 79
}
}
}
}Get discography overview statistics for the specified artist
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/discography-overview \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"id": "1yxSLGMDHlW21z4YXirZDS",
"name": "Black Eyed Peas",
"uri": "spotify:artist:1yxSLGMDHlW21z4YXirZDS",
"discography": {
"albums": {
"totalCount": 16
},
"singles": {
"totalCount": 61
},
"compilations": {
"totalCount": 2
},
"all": {
"totalCount": 79
}
}
}
}API Key
Spotify artist URI to get discography overview
^spotify:artist:[a-zA-Z0-9]+$"spotify:artist:1yxSLGMDHlW21z4YXirZDS"
Was this page helpful?