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.
- Send a request to
/users/{id}/favoriteshereidis your user id. it’ll return all of your favorite tracks. - For each tracks
- Check the
downloadableproperty’s value. if this property is not available request to/tracks/{id}to get all the properties of tracks. - If
downloadableis true download it from url found ondownload_urlproperty.
- Check the
View Reference