The playlists/:id/media endpoint retrieves all media objects in one of your playlists.
playlists/:id/media
GET
Insufficient permissions (not being logged in)
{
"data": [
"You are not authorized to access this resource."
],
"status": "notAuthorized",
}{
'data': [{ // Contains the requested data
'cid': 'xxx', // Media ID used on the originating website
'title': 'xxx', // Media title
'author': 'xxx', // Media author
'image': 'xxx', // Thumbnail (youtube) or Artwork (soundcloud)
'duration': 0, // Duration in seconds
'format': 1, // Media format (1 = youtube; 2 = soundcloud)
'id': -1 // Internal media ID
}],
'meta': {},
'status': 'ok',
'time': 'xx.xxxxxxxxxxx'
}