Last active
February 14, 2023 01:23
-
-
Save h4xnoodle/fe3b0178d34f45a67b18215e104880e5 to your computer and use it in GitHub Desktop.
Delete soundcloud likes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Auth flow to get token | |
# Get likes in batch of 100 with pagination | |
# curl -X GET "https://api.soundcloud.com/me/likes/tracks?limit=100&access=&linked_partitioning=true" -H "Bearer: <TOKEN>" -H "accept: application/json; charset=utf-8" | |
# Delete all in batch | |
# each ID of above | |
# curl -X DELETE "https://api.soundcloud.com/likes/tracks/<ID>" -H "Bearer: <TOKEN>" -H "accept: application/json; charset=utf-8" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment