Kosso
Kosso

Reputation: 324

Soundcloud API: Is it possible to get the 'playlist/set' data of my Favorites?

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

Answers (1)

John
John

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

Related Questions