User Saved Tracks and Track Information
Learn how to get information about the tracks saved by the user on Spotify using the Spotify API.
Overview
In this lesson, we'll look at how we can get a list of tracks and their details that are saved in a user profile.
Tracks saved in a user profile
We can get information about a user’s taste in music using the Get User’s Saved Tracks endpoint. The base URL https://api.spotify.com/v1/me/tracks
provides a list of tracks saved in the current user profile. We have already used PUT
and DELETE
...