SoundCloud /users/{id}/tracks URL not working SoundCloud /users/{id}/tracks URL not working curl curl

SoundCloud /users/{id}/tracks URL not working


Not sure why Soundcloud changed this but replacing username with user id works

https://api.soundcloud.com/users/10827351/tracks/?client_id={my_id}&format=json


This seems to be a bug unless it is specific to certain CLIENT IDs.

I tried the request in the question's format:

https:// api.soundcloud.com/users/hardwithstyle/tracks/?client_id={my_id}&format=json :: 404 message.

https:// api.soundcloud.com/users/hardwithstyle/playlists/?client_id={my_id}&format=json :: listed the playlists properly.

And the recommended URL format in the answer above, which produced the same results:

https:// api.soundcloud.com/tracks/hardwithstyle?client_id={my_id} :: 404 message.

https:// api.soundcloud.com/playlists/hardwithstyle?client_id={my_id} :: list of playlists.