Skip to main content
GET
/
api
/
v1
/
social
/
playlist
/
all
GET /api/v1/social/playlist/all
curl --request GET \
  --url https://api.scoot.app/api/v1/social/playlist/all
[
  {
    "playlistId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "type": "FREE_PLAYLIST",
    "qty": 123,
    "duration": 123,
    "available": true
  }
]
Retrieves all audio playlists available for Scootaverse sessions.

Query Parameters

page
integer
default:0

Page number to get, used with pageSize

size
integer
default:20

Number of items to get in one request, used with page

sort
string

Property to sort by. Append ',' and directions 'asc/desc' to change direction

Response

200 - application/json

OK

playlistId
string<uuid>
name
string
type
enum<string>
Available options:
FREE_PLAYLIST,
PAID_PLAYLIST
qty
integer
duration
integer
available
boolean
I