Browse the Help Center for platform guides or API & Developers for integration docs.
curl --request GET \
--url https://open.beatpass.ca/api/v1/users/me/playlists \
--header 'Authorization: Bearer <token>'{
"status": "success",
"pagination": {
"current_page": 1,
"from": 1,
"to": 100,
"per_page": 25,
"last_page": 156,
"total": 264,
"data": [
{
"id": 123,
"name": "Some Playlist",
"public": true,
"collaborative": false,
"image": "https://example.com/image1.jpg",
"description": "<string>"
}
]
}
}curl --request GET \
--url https://open.beatpass.ca/api/v1/users/me/playlists \
--header 'Authorization: Bearer <token>'{
"status": "success",
"pagination": {
"current_page": 1,
"from": 1,
"to": 100,
"per_page": 25,
"last_page": 156,
"total": 264,
"data": [
{
"id": 123,
"name": "Some Playlist",
"public": true,
"collaborative": false,
"image": "https://example.com/image1.jpg",
"description": "<string>"
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
How many tracks to return per page
Which page to return
Response body contains a paginated list of playlists user has liked in JSON format.
"success"
Show child attributes
1
1
100
25
156
264
Show child attributes
"Some Playlist"
Whether this playlist is public
true
Whether this playlist is collaborative
false
Artwork image for playlist, usually 300x300px in size
"https://example.com/image1.jpg"
description for the playlist
Was this page helpful?