Get a Category's Playlists
Developing
GET
/browse/categories/{category_id}/playlists
category-browse
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.spotify.com/v1/browse/categories//playlists' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
"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
Path Params
category_id
string
required
Query Params
country
string
optional
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