User Saved Albums and Album's Information
Learn to get the albums saved in a user profile and information about any album using the Spotify API.
Overview
Spotify provides an endpoint that fetches a list of albums saved in a user profile. We can then get further information about these albums using the Get Albums endpoint. In this lesson, we'll look at these two endpoints.
User’s saved albums
The base URL https://api.spotify.com/v1/me/albums
is used to get information about the albums saved in the current user’s profile. We used this endpoint to save and remove albums from a user profile using PUT
and DELETE
requests ...