Get A Playlists Items - https://api.spotify.com/v1/playlists/{playlist_id}/tracks Use the command json_data = json.loads(response.text) to get below... General The main API Call format = ` print(json_data["href"]) https://api.spotify.com/v1/playlists/3X3yNBOP8I51oFmwibxHMV/tracks?offset=0&limit=1 Limit set in Call = print(json_data["limit"]) 1 Next (Track?) = print(json_data["next"]) https://api.spotify.com/v1/playlists/3X3yNBOP8I51oFmwibxHMV/tracks?offset=1&limit=1 Offset set in Call = print(json_data["offset"]) 0 Previous (Track?) = print(json_data["previous"]) None Total Tracks in Playlist = print(json_data["total"]) 27 Items General Date Added = print(json_data["items"][0]["added_at"]) 2021-02-24T17:13:28Z Added By (Username) = print(json_data["items"][0]["added_by"]["id"]) daftjoe Added By (URI) = print(json_data["items"][0]["added_by"]["uri"]) spotify:user:daftjoe Added BY (Spotify API Link) = print(json_data["items"][0]["added_by"]["href"]) https://api.spotify.com/v1/users/daftjoe Local File? = print(json_data["items"][0]["is_local"]) False Primary Colour = print(json_data["items"][0]["primary_color"]) None Album Album Type (album by default) = print(json_data["items"][0]["track"]["album"]["album_type"]) album Available Markets = print(json_data["items"][0]["track"]["album"]["available_markets"]) Many, many countries URL List for Album = print(json_data["items"][0]["track"]["album"]["external_urls"]) {'spotify': 'https://open.spotify.com/album/0MlTOiC5ZYKFGeZ8h3D4rd'} URL List for Spotify Album = print(json_data["items"][0]["track"]["album"]["external_urls"]["spotify"]) https://open.spotify.com/album/0MlTOiC5ZYKFGeZ8h3D4rd Album API link = print(json_data["items"][0]["track"]["album"]["href"]) https://api.spotify.com/v1/albums/0MlTOiC5ZYKFGeZ8h3D4rd Album id = print(json_data["items"][0]["track"]["album"]["id"]) 0MlTOiC5ZYKFGeZ8h3D4rd Album URI = print(json_data["items"][0]["track"]["album"]["uri"]) spotify:album:0MlTOiC5ZYKFGeZ8h3D4rd Album Name = print(json_data["items"][0]["track"]["album"]["name"]) Hopes And Fears Album Image 640 x 640 = print(json_data["items"][0]["track"]["album"]["images"][0]["url"]) https://i.scdn.co/image/ab67616d0000b2737d6cd95a046a3c0dacbc7d33 Album Image 300 x 300 = print(json_data["items"][0]["track"]["album"]["images"][1]["url"]) https://i.scdn.co/image/ab67616d00001e027d6cd95a046a3c0dacbc7d33 Album Image 64 x 64 = print(json_data["items"][0]["track"]["album"]["images"][2]["url"]) https://i.scdn.co/image/ab67616d000048517d6cd95a046a3c0dacbc7d33 Album Release Date = print(json_data["items"][0]["track"]["album"]["release_date"]) 2004-05-10 Album Release Date Precision = print(json_data["items"][0]["track"]["album"]["release_date_precision"]) day Album Track Count = print(json_data["items"][0]["track"]["album"]["total_tracks"]) 12 Album Type = print(json_data["items"][0]["track"]["album"]["type"]) album Artist URL List for Artist = print(json_data["items"][0]["track"]["album"]["artists"][0]["external_urls"]) {'spotify':'https://open.spotify.com/artist/53A0W3U0s8diEn9RhXQhVz'} URL for Spotify Artist = print(json_data["items"][0]["track"]["album"]["artists"][0]["external_urls"]["spotify"] https://open.spotify.com/artist/53A0W3U0s8diEn9RhXQhVz Artist (Spotify API link) = print(json_data["items"][0]["track"]["album"]["artists"][0]["href"]) https://api.spotify.com/v1/artists/53A0W3U0s8diEn9RhXQhVz Artist Type = print(json_data["items"][0]["track"]["album"]["artists"][0]["type"]) artist Artist id = print(json_data["items"][0]["track"]["album"]["artists"][0]["id"]) 53A0W3U0s8diEn9RhXQhVz Artist Name = print(json_data["items"][0]["track"]["album"]["artists"][0]["name"]) Keane Artist URI = print(json_data["items"][0]["track"]["album"]["artists"][0]["uri"]) spotify:artist:53A0W3U0s8diEn9RhXQhVz URL List for Artist = print(json_data["items"][0]["track"]["artists"][0]["external_urls"]) {'spotify':'https://open.spotify.com/artist/53A0W3U0s8diEn9RhXQhVz'} URL List for Spotify Artist = print(json_data["items"][0]["track"]["artists"][0]["external_urls"]["spotify"]) https://open.spotify.com/artist/53A0W3U0s8diEn9RhXQhVz Artist id = print(json_data["items"][0]["track"]["artists"][0]["id"]) 53A0W3U0s8diEn9RhXQhVz Artist Name = print(json_data["items"][0]["track"]["artists"][0]["name"]) Keane Artist Type = print(json_data["items"][0]["track"]["artists"][0]["type"]) artist Artist URI = print(json_data["items"][0]["track"]["artists"][0]["uri"]) spotify:artist:53A0W3U0s8diEn9RhXQhVz Track Available Markets = print(json_data["items"][0]["track"]["available_markets"]) Many, many countries Disc Number = print(json_data["items"][0]["track"]["disc_number"]) 1 Duration (ms) = print(json_data["items"][0]["track"]["duration_ms"]) 336320 Episode = print(json_data["items"][0]["track"]["episode"]) False Explicit = print(json_data["items"][0]["track"]["explicit"]) False External id's = print(json_data["items"][0]["track"]["external_ids"]) {'isrc': 'GBAAN0400108'} External id for isrc = print(json_data["items"][0]["track"]["external_ids"]["isrc"]) GBAAN0400108 URL List for track = print(json_data["items"][0]["track"]["external_urls"]) {'spotify': 'https://open.spotify.com/track/2lYntZF7Bb4p7JhxhWObUf'} URL List for Spotify track = print(json_data["items"][0]["track"]["external_urls"]["spotify"]) https://open.spotify.com/track/2lYntZF7Bb4p7JhxhWObUf Track (Spotify API Link) = print(json_data["items"][0]["track"]["href"]) https://api.spotify.com/v1/tracks/2lYntZF7Bb4p7JhxhWObUf Track id = print(json_data["items"][0]["track"]["id"]) 2lYntZF7Bb4p7JhxhWObUf Local track? = print(json_data["items"][0]["track"]["is_local"]) False Track Name = print(json_data["items"][0]["track"]["name"]) Untitled 1 Track Popularity = print(json_data["items"][0]["track"]["popularity"]) 39 Track preview URL = print(json_data["items"][0]["track"]["preview_url"]) https://p.scdn.co/mp3-preview/4fe5ce81f277102ee07dcc233f24df8c771a9c02?cid=7c10a117de724c709d547ee4a54995d9 Track = print(json_data["items"][0]["track"]["track True Track Number = print(json_data["items"][0]["track"]["track_number"]) 11 Track type = print(json_data["items"][0]["track"]["type"]) track Track URI = print(json_data["items"][0]["track"]["uri"]) spotify:track:2lYntZF7Bb4p7JhxhWObUf Video Video Thumbnail = print(json_data["items"][0]["video_thumbnail"]) {'url': None} Video Thumbnail URL = print(json_data["items"][0]["video_thumbnail"]["url"]) None