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