curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/discovered \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"totalCount": 100,
"items": [
{
"name": "This Is G-DRAGON",
"uri": "spotify:playlist:37i9dQZF1DZ06evO1Jy5Gw",
"description": "This is G-DRAGON. The essential tracks, all in one playlist.",
"images": [
{
"url": "https://i.scdn.co/image/ab67706f00000002fb55a70730360f1eb77e1bbc",
"width": null,
"height": null
}
]
}
]
}
}Get playlists where the artist is discovered
curl --request GET \
--url https://spotify-api31.p.rapidapi.com/api/v1/artists/discovered \
--header 'x-rapidapi-key: <api-key>'{
"message": "Success",
"statusCode": 200,
"pagination": {
"total": 100,
"hasMore": true,
"continuation": "CDsQ8FsiEwje95_F1pmRAxXlsykDHUX"
},
"data": {
"totalCount": 100,
"items": [
{
"name": "This Is G-DRAGON",
"uri": "spotify:playlist:37i9dQZF1DZ06evO1Jy5Gw",
"description": "This is G-DRAGON. The essential tracks, all in one playlist.",
"images": [
{
"url": "https://i.scdn.co/image/ab67706f00000002fb55a70730360f1eb77e1bbc",
"width": null,
"height": null
}
]
}
]
}
}API Key
Spotify artist URI to get discovered on playlists
^spotify:artist:[a-zA-Z0-9]+$"spotify:artist:30b9WulBM8sFuBo17nNq9c"
Was this page helpful?