Get A Playlist - "https://api.spotify.com/v1/users/{user_id}/playlists" Use the command json_data = json.loads(response.text) to get below... Playlist The main API Call format = ` print(json_data["href"]) https://api.spotify.com/v1/users/daftjoe/playlists?offset=0&limit=1 Limit set in Call = print(json_data["limit"]) 1 Next (Playlist) = print(json_data["next"]) https://api.spotify.com/v1/users/daftjoe/playlists?offset=1&limit=1 Offset set in Call = print(json_data["offset"]) 0 Previous (Playlist) = print(json_data["previous"]) None Total Number of Playlists = print(json_data["total"]) 8 Playlist Primary Colour = print(json_data["items"][0]["primary_color"]) None Public Playlist = print(json_data["items"][0]["public"]) True Playlist snapshot_id = print(json_data["items"][0]["snapshot_id"]) MzMsYzdkNWNiNjdkNTZjMzBkNjVlNzIwODliMDkxZTc1ODhiMWJmZTAxMQ== Playlist Type = print(json_data["items"][0]["type"]) playlist Collaborative = print(json_data["items"][0]["collaborative"]) False description = print(json_data["items"][0]["description"]) (blank??) URL List for Playlist = print(json_data["items"][0]["external_urls"]) {'spotify': 'https://open.spotify.com/playlist/5CHUxOspd44zpbkLTi2RLD'} URL for Playlist on Spotify = print(json_data["items"][0]["external_urls"]["spotify"]) https://open.spotify.com/playlist/5CHUxOspd44zpbkLTi2RLD Playlist API link = print(json_data["items"][0]["href"]) https://api.spotify.com/v1/playlists/2szoXBCQhS14gDi0cP5pnh Playlist id = print(json_data["items"][0]["id"]) 2szoXBCQhS14gDi0cP5pnh Playlist Image 640 x 640 = print(json_data["items"][0]["images"][0]["url"]) https://mosaic.scdn.co/640/ab67616d0000b27347ee1d155222cd13cc9d64cdab67616d0000b273672ed7795c0a38627330b445ab67616d0000b27389d1f6dcde386c5ab49135c2ab67616d0000b273ce69f6900fa18dd689d2d45b Playlist Image 300 x 300 = print(json_data["items"][0]["images"][1]["url"]) https://mosaic.scdn.co/300/ab67616d0000b27347ee1d155222cd13cc9d64cdab67616d0000b273672ed7795c0a38627330b445ab67616d0000b27389d1f6dcde386c5ab49135c2ab67616d0000b273ce69f6900fa18dd689d2d45b Playlist Image 64 x 64 = print(json_data["items"][0]["images"][2]["url"]) https://mosaic.scdn.co/60/ab67616d0000b27347ee1d155222cd13cc9d64cdab67616d0000b273672ed7795c0a38627330b445ab67616d0000b27389d1f6dcde386c5ab49135c2ab67616d0000b273ce69f6900fa18dd689d2d45b Playlist Name print(json_data["items"][0]["name"]) QUEUE Playlist Owner Display Name = print(json_data["items"][0]["owner"]["display_name"]) Allan Smith URL List for Playlist Owner = print(json_data["items"][0]["owner"]["external_urls"]) {'spotify': 'https://open.spotify.com/user/daftjoe'} URL for Owner on Spotify = print(json_data["items"][0]["owner"]["external_urls"]["spotify"]) https://open.spotify.com/user/daftjoe Playlist Owner API Link = print(json_data["items"][0]["owner"]["href"]) https://api.spotify.com/v1/users/daftjoe Playlist Owner id = print(json_data["items"][0]["owner"]["id"]) daftjoe Playlist Owner type = print(json_data["items"][0]["owner"]["type"]) user Playlist Owner URI print(json_data["items"][0]["owner"]["uri"]) spotify:user:daftjoe Playlist Tracks API Link = print(json_data["items"][0]["tracks"]["href"]) https://api.spotify.com/v1/playlists/2szoXBCQhS14gDi0cP5pnh/tracks Playlist Track Count = print(json_data["items"][0]["tracks"]["total"]) 5011 Playlist URI = print(json_data["items"][0]["uri"]) spotify:playlist:2szoXBCQhS14gDi0cP5pnh