Reputation: 324
I'm build an app where I have already been successful in create and displaying a 'set'/playlist of tracks uploaded to an account, however I would like to be able to get the similar data for the lists of tracks by OTHER users which I have added to my Favorites.
Is this possible?
Thanks.
Upvotes: 2
Views: 5836
Reputation: 529
Have a look at the Subresources section in the docs: http://developers.soundcloud.com/docs/api/users
If you know the user id, you can get their tracks/playlists using the following.
/users/{id}/tracks
/users/{id}/playlists
/users/{id}/favorites
Upvotes: 5