Get Featured Playlists
Deprecated
GET/browse/featured-playlists
Get a list of Spotify featured playlists (shown, for example, on a Spotify player's 'Browse' tab).
Query Parameters
Returns
Get Featured Playlists
curl https://api.spotify.com/v1/browse/featured-playlists \
-H "Authorization: Bearer $SPOTIFY_ACCESS_TOKEN"{
"message": "Popular Playlists",
"playlists": {
"href": "https://api.spotify.com/v1/me/shows?offset=0&limit=20\n",
"limit": 20,
"next": "https://api.spotify.com/v1/me/shows?offset=1&limit=1",
"offset": 0,
"previous": "https://api.spotify.com/v1/me/shows?offset=1&limit=1",
"total": 4,
"items": [
{
"id": "id",
"collaborative": true,
"description": "description",
"external_urls": {
"published": true,
"spotify": "spotify"
},
"href": "href",
"images": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
"width": 300,
"published": true
}
],
"name": "name",
"owner": {
"id": "id",
"external_urls": {
"published": true,
"spotify": "spotify"
},
"href": "href",
"published": true,
"type": "user",
"uri": "uri",
"display_name": "display_name"
},
"published": true,
"snapshot_id": "snapshot_id",
"tracks": {
"href": "href",
"published": true,
"total": 0
},
"type": "type",
"uri": "uri"
}
],
"published": true
},
"published": true
}Returns Examples
{
"message": "Popular Playlists",
"playlists": {
"href": "https://api.spotify.com/v1/me/shows?offset=0&limit=20\n",
"limit": 20,
"next": "https://api.spotify.com/v1/me/shows?offset=1&limit=1",
"offset": 0,
"previous": "https://api.spotify.com/v1/me/shows?offset=1&limit=1",
"total": 4,
"items": [
{
"id": "id",
"collaborative": true,
"description": "description",
"external_urls": {
"published": true,
"spotify": "spotify"
},
"href": "href",
"images": [
{
"height": 300,
"url": "https://i.scdn.co/image/ab67616d00001e02ff9ca10b55ce82ae553c8228\n",
"width": 300,
"published": true
}
],
"name": "name",
"owner": {
"id": "id",
"external_urls": {
"published": true,
"spotify": "spotify"
},
"href": "href",
"published": true,
"type": "user",
"uri": "uri",
"display_name": "display_name"
},
"published": true,
"snapshot_id": "snapshot_id",
"tracks": {
"href": "href",
"published": true,
"total": 0
},
"type": "type",
"uri": "uri"
}
],
"published": true
},
"published": true
}