Get All Featured Playlists
Developing
GET
/browse/featured-playlists
category-browse
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.spotify.com/v1/browse/featured-playlists' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
"message": "string",
"playlists": {
"href": "string",
"items": [
{
"collaborative": true,
"description": "string",
"external_urls": {
"spotify": "string"
},
"href": "string",
"id": "string",
"images": [
{
"height": 0,
"url": "string",
"width": 0
}
],
"name": "string",
"owner": {
"display_name": "string",
"external_urls": {
"spotify": "string"
},
"followers": {
"href": "string",
"total": 0
},
"href": "string",
"id": "string",
"images": [
{
"height": 0,
"url": "string",
"width": 0
}
],
"type": "string",
"uri": "string"
},
"public": true,
"snapshot_id": "string",
"tracks": {
"href": "string",
"total": 0
},
"type": "string",
"uri": "string"
}
],
"limit": 0,
"next": "string",
"offset": 0,
"previous": "string",
"total": 0
}
}
Request
Query Params
country
string
optional
locale
string
optional
es_MX
, meaning "Spanish (Mexico)". Provide this parameter if you want the results returned in a particular language (where available). Note that, if locale
is not supplied, or if the specified language is not available, all strings will be returned in the Spotify default language (American English). The locale
parameter, combined with the country
parameter, may give odd results if not carefully matched. For example country=SE&locale=de_DE
will return a list of categories relevant to Sweden but as German language strings.timestamp
string
optional
yyyy-MM-ddTHH:mm:ss
. Use this parameter to specify the user's local time to get results tailored for that specific date and time in the day. If not provided, the response defaults to the current UTC time. Example: "2014-10-23T09:00:00" for a user whose local time is 9AM. If there were no featured playlists (or there is no data) at the specified time, the response will revert to the current UTC time.limit
integer
optional
offset
integer
optional
limit
to get the next set of items.Header Params
Authorization
string
required
Responses
Modified at 2022-09-12 10:04:50