Spotify Service
Spotify service interface provides all the methods to fetch data from the Spotify API.
Each API returns SpotifyApiResponse.
Functions
Get album tracks API returns all the tracks in an album. This is a paginated API.
Get artist albums API returns all the albums of the artist. This is a paginated API.
Get artist top tracks API returns the top tracks of the artist.
Get categories API returns all available categories. This is a paginated API.
Get featured playlists API returns the featured playlists. This is a paginated API.
Get genres API returns all available genres.
Get new album releases API returns all the new album releases. This is a paginated API.
Get playlist API returns information about the current playlist.
Get playlist tracks API returns all the tracks for a particular playlist. This is a paginated API.
Get recommendations API returns a list of recommended tracks.
Get related artists API returns the artists similar to the given artist.
Search album API searches for a album from the given query. This is a paginated API.
Search artist API searches for an artist from the given query. This is a paginated API.
Search playlist API searches for a playlist from the given query. This is a paginated API.
Search track API searches for a track from the given query. This is a paginated API.