Skip to content
Advertisement

Download tracks from Soundcloud via their API

I have around 1000 liked tracks on Soundcloud and I’d like to download the ones available for download.

Is it possible to use the API to download these where a download option is available?

Thanks for any pointers 🙂

Advertisement

Answer

Yes. its possible.

  1. Send a request to /users/{id}/favorites here id is your user id. it’ll return all of your favorite tracks.
  2. For each tracks
    1. Check the downloadable property’s value. if this property is not available request to /tracks/{id} to get all the properties of tracks.
    2. If downloadable is true download it from url found on download_url property.

View Reference

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement