Skip to content

Instantly share code, notes, and snippets.

@lemajes
Created February 21, 2023 19:46
[SPOTIFY 101] Spotify 101 #spotify #101

SPOTIFY 101

  • Get all tracks of a playlist (if liked songs, create new playlist, go to liked songs, CTRL+A, drag and drop to new playlist) curl -X "GET" "https://api.spotify.com/v1/me/tracks" -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Bearer xxx" > /tmp/out.json
  • Parse /tmp/out.json to get all songs links ``
@hudsonjacki
Copy link

Great tip! 🔥 Make sure your Spotify API token includes user-library-read scope for accessing liked songs. To extract all song links from /tmp/out.json, you can use jq in the terminal: jq -r '.items[].track.external_urls.spotify' /tmp/out.json. This will list all song URLs quickly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment