Skip to content

Instantly share code, notes, and snippets.

@h4xnoodle
Last active February 14, 2023 01:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h4xnoodle/fe3b0178d34f45a67b18215e104880e5 to your computer and use it in GitHub Desktop.
Save h4xnoodle/fe3b0178d34f45a67b18215e104880e5 to your computer and use it in GitHub Desktop.
Delete soundcloud likes
# 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