Is it possible to get the track list from a specific user via the soundcloud API WITHOUT requiring that specific user to authenticate?
I\'m looking for something like t
Yep, the API endpoint is at /users/{user_id}/tracks. If you don't have the user id, but only their username (permalink), you can use the /resolve endpoint to get the user data, including their id.
/users/{user_id}/tracks
/resolve
Documentation here: user resource and here resolve.