Lukesoft
Lukesoft

Reputation: 953

Soundcloud API get tracks by multiple users in one go

I understand that by using the code below i get all tracks by user XXXXX

http://api.soundcloud.com/users/XXXXX/tracks.json?client_id=MY ID

Now my question is how can i get all tracks by two or more different users in one go. For Example user YYYY and XXXX

The code below does not work

 http://api.soundcloud.com/users/XXXXX/YYYYY/tracks.json?client_id=MY ID

Upvotes: 1

Views: 197

Answers (1)

Harry Hedger
Harry Hedger

Reputation: 371

There's no way to do it through the API. You have to make two or more requests to get each users tracks and then combine them into one collection. Let me know if you need any additional information.

Upvotes: 1

Related Questions